        :root {
            --primary: #2c5f5d;
            --primary-light: #3d7a77;
            --accent: #c9a86a;
            --accent-light: #ddbf85;
            --dark: #1a2b2a;
            --text: #2d3748;
            --text-light: #718096;
            --bg: #fafbfc;
            --white: #ffffff;
            --shadow-sm: 0 2px 8px rgba(44, 95, 93, 0.06);
            --shadow-md: 0 4px 20px rgba(44, 95, 93, 0.08);
            --shadow-lg: 0 10px 40px rgba(44, 95, 93, 0.12);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text);
            background: var(--bg);
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        header.scrolled {
            box-shadow: var(--shadow-md);
        }
        
        .container {
          
            margin: 0 auto;
            padding: 1rem 5%;
        }
        
        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            display: flex;
            flex-direction: column;
            text-decoration: none;
            transition: transform 0.3s ease;
        }
        
        .logo:hover {
            transform: translateY(-2px);
        }
        
        .logo-main {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 1px;
            line-height: 1;
        }
        
        .logo-sub {
            font-size: 11px;
            font-weight: 500;
            color: var(--accent);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-top: 2px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 40px;
           
        }
        
        nav a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 15px;
            position: relative;
            transition: color 0.3s ease;
        }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }
        
        nav a:hover {
            color: var(--primary);
        }
        
        nav a:hover::after {
            width: 100%;
        }
        
        .cta-button {
            padding: 12px 28px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: var(--white);
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(44, 95, 93, 0.2);
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(44, 95, 93, 0.3);
        }
        
        /* Hero Section */
        .hero {
            margin-top: 95px;
            padding: 80px 0 100px;
            background: linear-gradient(135deg, rgba(44, 95, 93, 0.03) 0%, rgba(201, 168, 106, 0.05) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(201, 168, 106, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
        }
        
        .hero-text h1 {
            font-family: 'Playfair Display', serif;
            font-size: 56px;
            font-weight: 700;
            color: var(--dark);
            line-height: 1.2;
            margin-bottom: 24px;
        }
        
        .hero-text h1 span {
            color: var(--accent);
            display: block;
        }
        
        .hero-text p {
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 36px;
            max-width: 540px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            padding: 16px 36px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 16px rgba(44, 95, 93, 0.2);
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(44, 95, 93, 0.3);
        }
        
        .btn-secondary {
            padding: 16px 36px;
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-secondary:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-3px);
        }
        
        .hero-image {
            position: relative;
            height: 520px;
        }
        
        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
        }
        
        .hero-badge {
            position: absolute;
            bottom: 30px;
            left: 30px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px 28px;
            border-radius: 12px;
            box-shadow: var(--shadow-md);
        }
        
        .hero-badge-number {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }
        
        .hero-badge-text {
            font-size: 13px;
            color: var(--text-light);
            margin-top: 4px;
        }
        
        /* Stats Section */
        .stats {
            padding: 60px 0;
            background: var(--white);
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            text-align: center;
        }
        
        .stat-item h3 {
            font-size: 48px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
        }
        
        .stat-item p {
            font-size: 15px;
            color: var(--text-light);
        }
        
        /* Services Section */
        .services {
            padding: 100px 0;
            background: var(--bg);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-subtitle {
            font-size: 14px;
            font-weight: 600;
            color: var(--accent);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }
        
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 16px;
        }
        
        .section-description {
            font-size: 18px;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }
        
        .service-card {
            background: var(--white);
            padding: 40px 32px;
            border-radius: 16px;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        .service-card h3 {
            font-size: 22px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 12px;
        }
        
        .service-card p {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.6;
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            background: var(--white);
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .about-image {
            position: relative;
        }
        
        .about-image img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
        }
        
        .about-experience {
            position: absolute;
            top: 40px;
            right: -20px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
            color: var(--white);
            padding: 32px;
            border-radius: 16px;
            box-shadow: var(--shadow-lg);
            text-align: center;
        }
        
        .about-experience-number {
            font-size: 48px;
            font-weight: 700;
            line-height: 1;
        }
        
        .about-experience-text {
            font-size: 14px;
            margin-top: 8px;
            opacity: 0.95;
        }
        
        .about-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: 38px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 24px;
        }
        
        .about-text p {
            font-size: 16px;
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .credentials {
            margin-top: 32px;
            padding: 28px;
            background: var(--bg);
            border-radius: 12px;
            border-left: 4px solid var(--accent);
        }
        
        .credentials h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 16px;
        }
        
        .credentials ul {
            list-style: none;
        }
        
        .credentials li {
            padding: 8px 0;
            color: var(--text-light);
            font-size: 15px;
            position: relative;
            padding-left: 24px;
        }
        
        .credentials li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: 700;
        }
        
        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: var(--white);
        }
        
        .contact .section-subtitle {
            color: var(--accent-light);
        }
        
        .contact .section-title {
            color: var(--white);
        }
        
        .contact .section-description {
            color: rgba(255, 255, 255, 0.9);
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 60px;
        }
        
        .contact-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 36px 28px;
            border-radius: 16px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }
        
        .contact-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-4px);
        }
        
        .contact-icon {
            font-size: 42px;
            margin-bottom: 20px;
        }
        
        .contact-card h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
        }
        
        .contact-card p {
            font-size: 15px;
            opacity: 0.9;
            line-height: 1.6;
        }
        
        .contact-card a {
            color: var(--white);
            text-decoration: underline;
            text-decoration-color: rgba(255, 255, 255, 0.3);
            transition: text-decoration-color 0.3s ease;
        }
        
        .contact-card a:hover {
            text-decoration-color: var(--accent-light);
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
        }
        
        .footer-about h3 {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            color: var(--white);
            margin-bottom: 16px;
        }
        
        .footer-about p {
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .footer-column h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 20px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 12px;
        }
        
        .footer-column a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }
        
        .footer-column a:hover {
            color: var(--accent-light);
        }
        
        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 14px;
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-content,
            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .hero-text h1 {
                font-size: 44px;
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .about-experience {
                        right: 4px !important;
        padding: 1rem !important;
        top: 4px !important;
            }
            .about-experience-number {
                font-size: 18px !important;
            }
            .about-experience-text {
                font-size: 10px !important;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .hero {
                padding: 40px 0 80px;
            }
            
            .hero-text h1 {
                font-size: 36px;
            }
            
            .hero-text p {
                font-size: 16px;
            }
            
            .hero-image {
                height: 400px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .about-text h2 {
                font-size: 28px;
            }
            
            .about-image img {
                height: 400px;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }

            .hero{
                margin-top: 0!important;
            }
            
            .hero-text h1 {
                font-size: 32px;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .btn-primary,
            .btn-secondary {
                width: 100%;
                text-align: center;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
