/**
 * Main Stylesheet for Raul Business Agency Theme
 */

/* ============================================
   Variables & Base Styles
   ============================================ */
:root {
    --color-primary: #ff6a33;
    --color-dark: #05131d;
    --color-light-bg: #fffaf8;
    --color-white: #ffffff;
    --color-text: rgba(5, 19, 29, 0.7);
    --color-text-dark: #05131d;
    --font-primary: 'Poppins', sans-serif;
    --shadow-card: -9px 11px 38.1px 0px rgba(0, 0, 0, 0.05);
    --shadow-card-alt: 15.575px 16.688px 20.47px 0px rgba(0, 0, 0, 0.07);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-light-bg);
    color: var(--color-text-dark);
    line-height: 1.6;
    font-size: 17px;
}

.container {
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 200px;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text-dark);
}

.text-orange {
    color: var(--color-primary);
}

.text-dark {
    color: var(--color-text-dark);
}

.text-normal {
    font-weight: 400;
}

.text-bold {
    font-weight: 700;
}

/* ============================================
   Header & Navigation
   ============================================ */
.site-header {
    position: relative;
    padding: 65px 0;
    background-color: var(--color-light-bg);
}

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-logo a {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.logo-icon {
    width: 47px;
    height: 47px;
}

.logo-icon-placeholder {
    width: 47px;
    height: 47px;
    background-color: var(--color-primary);
    border-radius: 5px;
}

.logo-text {
    font-size: 32.453px;
    font-weight: 700;
    color: var(--color-text-dark);
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 70px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-menu li a {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-menu li:first-child a {
    color: var(--color-primary);
}

.main-menu li a:hover {
    color: var(--color-primary);
}

.btn-get-started {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 18px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-get-started:hover {
    background-color: #e55a28;
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    padding: 100px 0;
    background-color: var(--color-light-bg);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    margin-bottom: 60px;
}

.hero-title {
    font-size: 108px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -4.32px;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.63;
    color: var(--color-text);
    margin-bottom: 40px;
    max-width: 346px;
}

.hero-stats {
    display: flex;
    gap: 20px;
}

.stat-card {
    background: var(--color-white);
    border-radius: 15.575px;
    padding: 20px;
    box-shadow: var(--shadow-card-alt);
    display: flex;
    align-items: center;
    gap: 15px;
    width: 200px;
}

.stat-icon {
    width: 55.709px;
    height: 55.709px;
    flex-shrink: 0;
}

.stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.stat-number {
    font-size: 42.275px;
    font-weight: 600;
    color: var(--color-text-dark);
    line-height: 1.1;
    letter-spacing: -0.4227px;
}

.stat-label {
    font-size: 20.025px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.63;
}

.hero-image {
    width: 100%;
    height: 628px;
    border-radius: 20px;
    overflow: hidden;
    background-color: #c4c4c4;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.growth-card {
    background: var(--color-white);
    border-radius: 27px;
    padding: 50px;
    box-shadow: var(--shadow-card);
    max-width: 467px;
    margin-left: auto;
}

.growth-numbers {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.growth-number {
    font-size: 50px;
    font-weight: 600;
    color: var(--color-primary);
}

.growth-title {
    font-size: 27.984px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

.growth-description {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.63;
    color: var(--color-text);
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    padding: 100px 0;
    background-color: var(--color-light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-bottom: 100px;
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-card {
    background: var(--color-white);
    border-radius: 27px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    height: 401px;
}

.about-card-bg {
    position: absolute;
    inset: -6.76% -6.23% -12.24% -10.09%;
    z-index: 0;
}

.about-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-card-content {
    position: relative;
    z-index: 1;
}

.about-card-orange {
    background: var(--color-primary);
}

.about-card-orange .about-card-title,
.about-card-orange .about-card-text {
    color: var(--color-white);
}

.about-arrow {
    width: 68.561px;
    height: 68.561px;
    margin-bottom: 30px;
}

.about-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-card-title {
    font-size: 27.984px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-card-text {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.63;
    color: var(--color-text);
}

.about-card-orange .about-card-text {
    color: rgba(255, 255, 255, 0.7);
}

.about-text {
    text-align: right;
}

.section-title {
    font-size: 36px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 1.2;
}

.section-description {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.63;
    color: var(--color-text);
    margin-bottom: 30px;
    max-width: 373px;
    margin-left: auto;
}

.btn-read-more {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-read-more:hover {
    background-color: #031016;
}

.about-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-bottom: 100px;
}

.section-title-large {
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.about-bottom-hero {
    text-align: right;
}

.hero-title-large {
    font-size: 108px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -2.16px;
}

.about-image-section {
    position: relative;
    margin-top: 60px;
}

.about-image {
    width: 100%;
    height: 478px;
    border-radius: 30px;
    overflow: hidden;
    background-color: #c4c4c4;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-card {
    position: absolute;
    right: 0;
    top: 25px;
    background: var(--color-white);
    border-radius: 27px;
    padding: 60px 50px;
    box-shadow: var(--shadow-card);
    max-width: 467px;
}

.card-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    line-height: 1.17;
}

.card-numbers {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.card-number {
    font-size: 50px;
    font-weight: 600;
    color: var(--color-primary);
}

.card-description {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.63;
    color: var(--color-text);
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
    padding: 100px 0;
    background-color: var(--color-light-bg);
}

.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-bottom: 80px;
}

.services-header .section-title-large {
    font-size: 77px;
    font-weight: 600;
    line-height: 1.33;
    letter-spacing: -1.54px;
    text-transform: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.service-card {
    background: var(--color-white);
    border-radius: 27px;
    padding: 60px 40px;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 60.996px;
    height: 60.996px;
    background: rgba(255, 106, 51, 0.13);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.service-icon img {
    width: 41.071px;
    height: 41.071px;
}

.service-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    line-height: 1.17;
}

.service-description {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.63;
    color: var(--color-text);
}

.service-card-arrow {
    background: linear-gradient(to left, #fffaf8 16.276%, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-arrow-large {
    width: 132.289px;
    height: 132.289px;
    transform: rotate(44.48deg);
}

.service-arrow-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ============================================
   Page Section
   ============================================ */
.page-section {
    padding: 100px 0;
    background-color: var(--color-light-bg);
}

.page-title {
    font-size: 77px;
    font-weight: 600;
    line-height: 1.33;
    letter-spacing: -1.54px;
    text-transform: none;
    margin-bottom: 80px;
}

.page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.page-cards {
    display: flex;
    flex-direction: column;
    gap: 52px;
}

.page-card {
    background: var(--color-white);
    border-radius: 27px;
    padding: 54px 50px;
    box-shadow: var(--shadow-card);
}

.page-image {
    width: 100%;
    height: 732px;
    border-radius: 43px;
    overflow: hidden;
    background-color: #c4c4c4;
}

.page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    padding: 100px 0;
    background-color: var(--color-light-bg);
}

.faq-title {
    font-size: 77px;
    font-weight: 600;
    line-height: 1.33;
    letter-spacing: -1.54px;
    text-align: center;
    margin-bottom: 80px;
}

.faq-content {
    display: grid;
    grid-template-columns: 473px 1fr;
    gap: 65px;
}

.faq-cards {
    display: flex;
    flex-direction: column;
    gap: 75px;
}

.faq-card {
    background: var(--color-white);
    border-radius: 27px;
    padding: 43px 40px;
    box-shadow: var(--shadow-card);
}

.faq-card-orange {
    background: var(--color-primary);
}

.faq-icon {
    width: 60.996px;
    height: 60.996px;
    background: rgba(255, 106, 51, 0.13);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.faq-icon-white {
    background: rgba(255, 255, 255, 0.13);
}

.faq-icon img {
    width: 41.071px;
    height: 41.071px;
}

.faq-card-title {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.17;
    margin-bottom: 20px;
}

.faq-card-orange .faq-card-title {
    color: var(--color-white);
}

.faq-card-text {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.63;
    color: var(--color-text);
}

.faq-card-orange .faq-card-text {
    color: rgba(255, 255, 255, 0.7);
}

.faq-accordion {
    background: var(--color-white);
    border-radius: 27px;
    padding: 61px 50px;
    box-shadow: var(--shadow-card);
}

.faq-item {
    border-bottom: 1px solid rgba(5, 19, 29, 0.1);
    padding: 24px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.faq-question-icon {
    width: 60.996px;
    height: 60.996px;
    background: rgba(255, 106, 51, 0.13);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-question-icon img {
    width: 41.071px;
    height: 41.071px;
}

.faq-question-title {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.17;
    flex: 1;
}

.faq-arrow {
    width: 58.083px;
    height: 58.083px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45.186deg);
    flex-shrink: 0;
}

.faq-arrow img {
    width: 41.071px;
    height: 41.071px;
}

.faq-arrow-active {
    transform: rotate(135deg);
}

.faq-answer {
    margin-top: 20px;
    padding-left: 81px;
}

.faq-answer p {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.63;
    color: var(--color-text);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--color-white);
    padding: 100px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 80px;
    margin-bottom: 60px;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-dark);
    text-transform: uppercase;
    margin-bottom: 40px;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 20px;
}

.footer-menu a {
    font-size: 16px;
    font-weight: 500;
    color: rgba(5, 19, 29, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    margin-top: 60px;
}

.footer-divider {
    height: 1px;
    background: rgba(5, 19, 29, 0.1);
    margin-bottom: 40px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-dark);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ============================================
   Content & Posts
   ============================================ */
.entry-header {
    margin-bottom: 30px;
}

.entry-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.entry-title a {
    color: var(--color-text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-title a:hover {
    color: var(--color-primary);
}

.entry-content {
    font-size: 17px;
    line-height: 1.63;
    color: var(--color-text);
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-header {
    margin-bottom: 40px;
}

.page-title {
    font-size: 40px;
    font-weight: 600;
}

.no-results {
    padding: 60px 0;
    text-align: center;
}

.search-form {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.search-field {
    padding: 10px 15px;
    border: 1px solid rgba(5, 19, 29, 0.2);
    border-radius: 5px;
    font-size: 16px;
    flex: 1;
}

.search-submit {
    padding: 10px 20px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.search-submit:hover {
    background-color: #e55a28;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1600px) {
    .container {
        padding: 0 100px;
    }
    
    .hero-title {
        font-size: 80px;
    }
    
    .hero-title-large {
        font-size: 80px;
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 50px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .main-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-menu {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-title {
        font-size: 48px;
        letter-spacing: -2px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
    }
}

