/* Hide Get a Quote on mobile */
.desktop-only {
    display: inline-block;
}
@media (max-width: 900px) {
    .desktop-only {
        display: none !important;
    }
}
/* Sticky Language Switcher */
.language-switcher {
    position: sticky;
    top: 0;
    z-index: 1100;
    display: inline-block;
    margin-left: 16px;
}
.language-btn {
    background: #f8fafc;
    color: #475569;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 8px 18px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}
.language-btn:hover {
    background: #e2e8f0;
}
.language-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    min-width: 140px;
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 1200;
}
.language-dropdown.active {
    display: block;
}
.language-option {
    padding: 10px 18px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #475569;
    transition: background 0.2s;
}
.language-option.active,
.language-option:hover {
    background: #e2e8f0;
    color: #0f172a;
}
/* CSS Animations & Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shine {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes slideInBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Professional Design System */
:root {
    /* Premium Color Palette */
    --color-primary: #4fc3f7; /* Light Blue */
    --color-primary-light: #e3f2fd; /* Very light blue */
    --color-accent: #43a047; /* Green */
    --color-accent-dark: #388e3c; /* Darker Green */
    --color-accent-light: #81c784; /* Light Green */
    --color-text-primary: #222;
    --color-text-secondary: #388e3c;
    --color-text-light: #4fc3f7;
    --color-white: #ffffff;
    --color-background: #e8f5e9; /* Very light green background */
    --color-border: #b2ebf2; /* Light blue border */
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.10);
    --shadow-lg: 0 8px 32px rgba(15, 23, 42, 0.14);
    --shadow-xl: 0 16px 48px rgba(15, 23, 42, 0.18);
    
    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--color-text-primary);
    background-color: var(--color-background);
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Professional Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-primary);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.875rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-background);
}

::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-light);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--color-border) var(--color-background);
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: #222;
    font-size: 0.875rem;
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    border-bottom: 1px solid rgba(196, 155, 56, 0.2);
    backdrop-filter: blur(10px);
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.top-bar-link {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.top-bar-link:hover {
    color: #05339C;
}

.top-bar-link i {
    font-size: 0.875rem;
    color: #222;
}

.top-bar-text {
    color: #222;
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-text i {
    color: #222;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-social-label {
    color: #222;
    font-weight: 500;
    margin-right: 4px;
}

.social-icons {
    display: flex;
    gap: 8px;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.875rem;
}

.social-icon:hover {
    background: #c49b38;
    transform: translateY(-2px);
}

/* Main Header */
.header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    font-size: 2rem;
    color: #c49b38;
}

.brand-text h2 {
    color: var(--color-primary);
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: var(--font-body);
    line-height: 1;
    margin-bottom: 4px;
}

.brand-tagline {
    font-size: 0.6875rem;
    color: var(--color-text-light);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-style: italic;
}

/* Mobile Menu Toggle */

.menu-toggle-checkbox {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: transparent;
    border: none;
    z-index: 1001;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
        z-index: 1003;
        order: 4;
    }
    .menu-toggle-checkbox:checked ~ .nav-menu {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        padding: 20px;
    }
    .menu-toggle-checkbox:checked ~ .menu-toggle span:nth-child(1) {
        transform: rotate(-45deg) translate(-6px, 7px);
    }
    .menu-toggle-checkbox:checked ~ .menu-toggle span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    .menu-toggle-checkbox:checked ~ .menu-toggle span:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -7px);
    }
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.3);
        opacity: 0;
        visibility: hidden;
        z-index: 1000;
        transition: opacity 0.3s;
    }
    .menu-toggle-checkbox:checked ~ .menu-overlay {
        opacity: 1;
        visibility: visible;
    }
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

.menu-toggle:hover span {
    background: linear-gradient(135deg, #d4af37, #b8860b);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -7px);
}

.nav-menu {
    display: flex;
    gap: 8px;
    align-items: center;
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #475569;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 10px 18px;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    border-radius: 6px;
}

.nav-menu a:hover {
    color: #0f172a;
    background: #f8fafc;
}

.nav-menu a.active {
    color: white;
    background: #0f172a;
}

.header-cta {
    display: flex;
    align-items: center;
}

.btn-header {
    padding: 10px 24px;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(196, 155, 56, 0.2);
}



/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(196, 155, 56, 0.25);
    position: relative;
    overflow: hidden;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s ease-in-out infinite;
}

.btn-primary:hover::before {
    animation: shine 1.5s ease-in-out infinite;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-accent-dark) 0%, #8a6b25 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 155, 56, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(196, 155, 56, 0.25);
}

.btn-secondary {
    background: white;
    color: var(--color-primary);
    border: 2px solid var(--color-border);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--color-background);
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary:active {
    transform: translateY(0);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Hero Section */
.hero {
    margin-top: 10px;
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.92) contrast(1.08) sepia(0.1) hue-rotate(-20deg);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgb(146, 216, 250) 0%, rgba(65, 166, 126, 0.85) 60%, rgb(158, 220, 250) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    width: 100%;
    padding: 4rem 0;
    margin-top: 72px;
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(196, 155, 56, 0.15);
    border: 1px solid #c49b38;
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    max-width: 1000px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
    color: #ffffff;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #ffffff;
    max-width: 900px;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out backwards;
}

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.4s; }
.stat-item:nth-child(3) { animation-delay: 0.6s; }
.stat-item:nth-child(4) { animation-delay: 0.8s; }

.stat-item:hover {
    background: rgba(229, 201, 95, 0.18);
    border: 1px solid #E5C95F;
    color: #05339C;
}

.stat-item i {
    font-size: 2.5rem;
    color: #fff;
    flex-shrink: 0;
    animation: float 3s ease-in-out infinite;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-buttons .btn i {
    font-size: 1rem;
}

/* WhatsApp Button */
.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* Call Button */
.btn-call {
    background: #0f172a;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-call:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* News & Updates Section */
.news-updates {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.news-updates::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #c49b38 0%, #0f172a 100%);
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(196, 155, 56, 0.1);
    border: 1px solid #c49b38;
    border-radius: 50px;
    color: #c49b38;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.news-slider {
    position: relative;
    padding: 2rem 0;
}

.news-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem;
}

.news-track::-webkit-scrollbar {
    display: none;
}

.news-item {
    flex: 0 0 400px;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #1055C9;
    display: flex;
    gap: 1.5rem;
    animation: fadeInRight 0.6s ease-out backwards;
}

.news-item:nth-child(1) { animation-delay: 0.1s; }
.news-item:nth-child(2) { animation-delay: 0.2s; }
.news-item:nth-child(3) { animation-delay: 0.3s; }
.news-item:nth-child(4) { animation-delay: 0.4s; }
.news-item:nth-child(5) { animation-delay: 0.5s; }

.news-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(16, 85, 201, 0.15);
    border-color: #1055C9;
}

.news-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1055C9 0%, #41A67E 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.75rem;
    animation: rotate 20s linear infinite;
}

.news-item:hover .news-icon {
    animation: pulse 0.6s ease-in-out;
}

.news-content {
    flex: 1;
}

.news-date {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.news-content h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    font-weight: 700;
}

.news-content p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #c49b38;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-link:hover {
    gap: 0.75rem;
    color: #9a7a2c;
}

.news-link i {
    font-size: 0.75rem;
}

.news-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #c49b38;
    color: #c49b38;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.news-nav:hover {
    background: #c49b38;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.news-prev {
    left: -25px;
}

.news-next {
    right: -25px;
}

/* Sections */
section {
    padding: 100px 0;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    animation: fadeInDown 0.8s ease-out;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
    position: relative;
    padding: 0 20px;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--color-accent);
    opacity: 0.3;
}

.section-label::before { left: -50px; }
.section-label::after { right: -50px; }

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--color-primary);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
    position: relative;
    line-height: 1.3;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    border-radius: 3px;
    animation: scaleIn 0.6s ease-out 0.3s backwards;
}

.services .section-header h2,
.blog .section-header h2 {
    color: white;
}

.services .section-header .section-label,
.blog .section-header .section-label {
    color: var(--color-accent-light);
}

.services .section-header p,
.blog .section-header p {
    color: rgba(255, 255, 255, 0.85);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 680px;
    margin: 24px auto 0;
    line-height: 1.8;
    font-weight: 400;
}

/* Services Section */
.services {
    background: #E3F2FD;
    position: relative;
    color: #111;
}

.services h2,
.services h3,
.services h4,
.services p,
.services .section-label,
.services .service-content {
    color: #111 !important;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    background: white;
    animation: fadeInUp 0.6s ease-out backwards;
    border: 1px solid var(--color-border);
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }
.service-card:nth-child(8) { animation-delay: 0.8s; }

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-accent);
}

.service-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.5) 100%);
    transition: all 0.4s ease;
}

.service-card:hover .service-overlay {
    background: linear-gradient(180deg, rgba(196, 155, 56, 0.3) 0%, rgba(15, 23, 42, 0.7) 100%);
}

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.service-icon {
    position: absolute;
    top: -30px;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #87ceeb 0%, #b3e0ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(196, 155, 56, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.service-card:hover .service-icon {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 30px rgba(196, 155, 56, 0.4);
    animation: none;
}

.service-icon i {
    font-size: 1.75rem;
    color: white;
}

.service-content h3 {
    font-size: 1.35rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
    margin-top: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.service-content p {
    color: #64748b;
    line-height: 1.7;
    flex-grow: 1;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #c49b38;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 0.75rem;
    color: #a37d2e;
}

.service-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(3px);
}

/* Products Section */
.products {
    background: #ffffff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 380px;
    border: 1px solid #f1f5f9;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: #e2e8f0;
}

.product-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.82) 0%, rgba(5,51,156,0.78) 100%);
    color: #fff;
    padding: 40px 25px 25px;
    transform: translateY(60%);
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
    transform: translateY(0);
}

.product-overlay h3 {
    font-size: 0.8rem;
    color: #c49b38;
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-overlay h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.product-overlay p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    opacity: 0.9;
    line-height: 1.5;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
}

.about-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(30deg, #c49b38 12%, transparent 12.5%, transparent 87%, #c49b38 87.5%, #c49b38),
        linear-gradient(150deg, #c49b38 12%, transparent 12.5%, transparent 87%, #c49b38 87.5%, #c49b38);
    background-size: 80px 140px;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about .section-header h2 {
    font-size: 3rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.about .section-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.15rem;
}

.about-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

/* Left Column Styles */
.about-left-column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.experience-badge {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(196, 155, 56, 0.25);
    border: 2px solid rgba(196, 155, 56, 0.3);
    width: fit-content;
    animation: fadeInLeft 0.8s ease-out;
}

.badge-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #c49b38 0%, #d4a84e 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    animation: pulse 2s ease-in-out infinite;
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.experience-number {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, #c49b38 0%, #d4a84e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.experience-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-intro h3 {
    font-size: 2.25rem;
    color: #0f172a;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.about-intro .lead {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}

.about-description {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-description p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

.why-choose-us {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid #f1f5f9;
    animation: fadeInLeft 0.8s ease-out 0.3s backwards;
}

.why-choose-us h4 {
    font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
}

.why-choose-us h4 i {
    color: #c49b38;
    font-size: 1.3rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

.features-list li i {
    color: #22c55e;
    font-size: 1.15rem;
    flex-shrink: 0;
}

/* Right Column Styles */
.about-right-column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.about-stats-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid #f1f5f9;
}

.stats-title {
    font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.goals-section {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid #f1f5f9;
}

.goals-section h4 {
    font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.goals-section h4 i {
    color: #c49b38;
    font-size: 1.3rem;
}

.goals-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.goal-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 1.75rem;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    display: flex;
    gap: 1.25rem;
    align-items: start;
    animation: fadeInRight 0.6s ease-out backwards;
}

.goal-card:nth-child(1) { animation-delay: 0.1s; }
.goal-card:nth-child(2) { animation-delay: 0.2s; }
.goal-card:nth-child(3) { animation-delay: 0.3s; }
.goal-card:nth-child(4) { animation-delay: 0.4s; }

.goal-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.goal-green {
    border-color: rgba(34, 197, 94, 0.2);
}

.goal-green:hover {
    border-color: #22c55e;
}

.goal-blue {
    border-color: rgba(59, 130, 246, 0.2);
}

.goal-blue:hover {
    border-color: #3b82f6;
}

.goal-purple {
    border-color: rgba(168, 85, 247, 0.2);
}

.goal-purple:hover {
    border-color: #a855f7;
}

.goal-red {
    border-color: rgba(239, 68, 68, 0.2);
}

.goal-red:hover {
    border-color: #ef4444;
}

.goal-icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.goal-green .goal-icon-wrapper {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.25);
}

.goal-blue .goal-icon-wrapper {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
}

.goal-purple .goal-icon-wrapper {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.25);
}

.goal-red .goal-icon-wrapper {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.25);
}

.goal-card:hover .goal-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
}

.goal-content {
    flex: 1;
}

.goal-content h5 {
    color: #0f172a;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.goal-content p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.about-stat {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e2e8f0;
    animation: scaleIn 0.6s ease-out backwards;
}

.about-stat:nth-child(1) { animation-delay: 0.1s; }
.about-stat:nth-child(2) { animation-delay: 0.2s; }
.about-stat:nth-child(3) { animation-delay: 0.3s; }
.about-stat:nth-child(4) { animation-delay: 0.4s; }

.about-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.about-stat:hover .stat-icon {
    transform: scale(1.08) rotate(-5deg);
}

.stat-icon-gold {
    background: linear-gradient(135deg, #c49b38 0%, #d4a84e 100%);
    box-shadow: 0 4px 15px rgba(196, 155, 56, 0.25);
}

.stat-icon-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
}

.stat-icon-green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.25);
}

.stat-icon-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.25);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-text {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* Blog Section */
.blog {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease-out backwards;
}

.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.3s; }

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(196, 155, 56, 0.3);
    border-color: #c49b38;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-category {
    background: #0f172a;
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.blog-date {
    color: #94a3b8;
    font-size: 0.875rem;
}

.blog-card h3 {
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.blog-card p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.7;
    flex-grow: 1;
    font-size: 0.95rem;
}

.blog-link {
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
    font-size: 0.95rem;
}

.blog-link:hover {
    color: #c49b38;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
}

.contact-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, #c49b38 1px, transparent 1px);
    background-size: 40px 40px;
}

.contact .section-header {
    margin-bottom: 4rem;
}

.contact-wrapper {
    position: relative;
    z-index: 1;
}

/* Contact Info Cards */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: scaleIn 0.6s ease-out backwards;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }
.info-card:nth-child(4) { animation-delay: 0.4s; }

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #c49b38;
}

.info-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(-5deg);
}

.info-icon-gold {
    background: linear-gradient(135deg, #c49b38 0%, #d4a84e 100%);
    box-shadow: 0 4px 15px rgba(196, 155, 56, 0.3);
}

.info-icon-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.info-icon-green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.info-icon-purple {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.info-card h3 {
    color: #0f172a;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.info-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.contact-detail a {
    color: #c49b38;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-detail a:hover {
    color: #a37d2e;
}

.contact-hours {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 1.5rem !important;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #c49b38;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.info-link:hover {
    gap: 0.75rem;
    color: #a37d2e;
}

.info-link i {
    font-size: 0.75rem;
}

/* Contact Form Container */
.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #f1f5f9;
    margin-bottom: 4rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f1f5f9;
}

.form-header h3 {
    color: #0f172a;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.form-header p {
    color: #64748b;
    font-size: 1.05rem;
}

.contact-form {
    max-width: 900px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #0f172a;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: #c49b38;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8fafc;
    color: #0f172a;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c49b38;
    background: white;
    box-shadow: 0 0 0 4px rgba(196, 155, 56, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    padding-right: 3rem;
}

.btn-large {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-large i {
    font-size: 1.1rem;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 3.5rem 3rem;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(196, 155, 56, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c49b38 0%, #d4a84e 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(196, 155, 56, 0.3);
}

.newsletter-text h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.newsletter-form {
    position: relative;
    z-index: 1;
}

.newsletter-input-group {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 16px;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto 1rem;
}

.newsletter-input-group i {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-right: 1rem;
}

.newsletter-input-group input {
    flex: 1;
    border: none;
    outline: none;
    padding: 1rem 1rem;
    font-size: 1rem;
    background: transparent;
    color: #0f172a;
}

.newsletter-input-group input::placeholder {
    color: #94a3b8;
}

.newsletter-input-group .btn {
    margin: 0;
    padding: 1rem 2rem;
    white-space: nowrap;
}

.newsletter-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
}

.newsletter-note i {
    font-size: 0.75rem;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.footer-section p {
    line-height: 1.6;
    color: #fff;
    opacity: 0.9;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #c49b38;
    opacity: 1;
}

.footer-section i {
    color: #fff;
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll reveal animations */
.service-card,
.product-card,
.blog-card {
    animation: fadeIn 0.6s ease-out;
}

.section-header {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-main-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .about-main-grid {
        gap: 2.5rem;
    }
    
    .about .section-header h2 {
        font-size: 2.5rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .contact-content {
        gap: 40px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .news-slider-container {
        padding: 0 15px;
    }
    
    .news-card {
        min-width: 320px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .top-bar-container,
    .header-container {
        padding: 0 24px;
    }
    
    .top-bar-left {
        gap: 16px;
    }
    
    .top-bar-text {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-bar {
        position: static;
    }
    
    .top-bar-container {
        padding: 8px 20px;
        flex-direction: column;
        gap: 8px;
    }
    
    .top-bar-left {
        width: 100%;
        justify-content: center;
        gap: 12px;
        font-size: 0.8rem;
    }
    
    .top-bar-right {
        width: 100%;
        justify-content: center;
    }
    
    .top-bar-social-label {
        display: none;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .header {
        position: fixed;
        top: 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .news-updates {
        margin-top: 0;
    }
    
    .slider-container {
        height: 90vh;
    }
    
    .slide-content {
        padding-top: 80px;
    }
    
    .slide-content h1 {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .slide-label {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .slide-description {
        font-size: 1rem;
        margin-bottom: 28px;
    }
    
    .slide-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .slide-buttons {
        gap: 10px;
        margin-bottom: 24px;
    }
    
    .slide-buttons .btn {
        flex: 1 1 auto;
        min-width: 140px;
        padding: 12px 20px;
        font-size: 0.875rem;
    }
    
    .slide-buttons .btn i {
        font-size: 0.9rem;
    }
    
    .slide-services {
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .services-tag {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .services-list {
        gap: 10px;
    }
    
    .services-list span {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .slide-stats {
        gap: 32px;
        margin-bottom: 28px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .slide-features {
        gap: 10px;
        margin-bottom: 28px;
    }
    
    .feature-item {
        font-size: 0.95rem;
    }
    
    .slide-certifications {
        gap: 16px;
        margin-bottom: 28px;
    }
    
    .cert-item {
        padding: 8px 14px;
        flex: 1 1 auto;
    }
    
    .cert-item span {
        font-size: 0.85rem;
    }
    
    .slider-btn {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }
    
    .slider-btn.prev {
        left: 16px;
    }
    
    .slider-btn.next {
        right: 16px;
    }
    
    .slider-indicators {
        bottom: 32px;
    }
    
    .indicator {
        width: 32px;
    }
    
    .indicator.active {
        width: 48px;
    }
    
    .header-container {
        padding: 12px 20px;
        flex-wrap: wrap;
        position: relative;
    }
    
    .brand-text h2 {
        font-size: 1.1rem;
    }
    
    .brand-tagline {
        font-size: 0.7rem;
    }
    
    .brand-icon {
        font-size: 1.6rem;
    }
    
    .menu-toggle {
        display: flex;
        order: 3;
        margin-left: auto;
        z-index: 1002;
    }
    
    .nav-brand {
        order: 1;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
        z-index: 1003;
        order: 4;
    }
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0,0,0,0.3);
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
            transition: opacity 0.3s;
        }
        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
    
    .nav-menu.active {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        padding: 20px;
    }
    
    .nav-menu a {
        padding: 16px 0;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
        text-align: center;
        font-size: 1rem;
        margin: 0;
        border-radius: 0;
    }
    
    .nav-menu a:hover {
        background: #f8fafc;
        color: #0f172a;
    }
    
    .nav-menu a.active {
        background: #0f172a;
        color: white;
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    .header-cta {
        order: 2;
        margin-left: auto;
        margin-right: 12px;
    }
    
    .btn-header {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .hero {
        margin-top: 70px;
        padding-top: 80px;
        padding-bottom: 60px;
        text-align: center;
        min-height: 90vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .hero-buttons .btn {
        flex: 1 1 calc(50% - 10px);
        min-width: 140px;
    }
    
    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-stat-box {
        padding: 20px 15px;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .hero-stat-label {
        font-size: 0.85rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .newsletter {
        padding: 30px 25px;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .newsletter-input-group input {
        width: 100%;
    }
    
    .newsletter-input-group .btn {
        width: 100%;
    }
    
    .news-slider-container {
        padding: 0 10px;
    }
    
    .news-card {
        min-width: 280px;
        padding: 25px 20px;
    }
    
    .news-icon {
        width: 50px;
        height: 50px;
    }
    
    .news-icon i {
        font-size: 1.3rem;
    }
    
    .news-card h3 {
        font-size: 1.1rem;
    }
    
    .news-card p {
        font-size: 0.9rem;
    }
    
    .slider-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-nav-btn.prev {
        left: 10px;
    }
    
    .slider-nav-btn.next {
        right: 10px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info-card {
        padding: 25px 20px;
    }
    
    .contact-info-icon {
        width: 55px;
        height: 55px;
    }
    
    .contact-info-icon i {
        font-size: 1.3rem;
    }
    
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-label {
        font-size: 0.9rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-stat {
        padding: 1.25rem;
    }
    
    .stat-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .stat-value {
        font-size: 1.75rem;
    }
    
    .stat-text {
        font-size: 0.8rem;
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .goal-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .goal-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .goal-icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .why-choose-us,
    .about-stats-wrapper,
    .goals-section {
        padding: 1.5rem;
    }
    
    .features-list {
        gap: 0.85rem;
    }
    
    .features-list li {
        font-size: 0.95rem;
    }
    
    .experience-badge {
        float: none;
        margin: 0 auto 25px;
        display: inline-block;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-text p {
        text-align: left;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .goals-section {
        text-align: left;
    }
    
    .goal-item {
        gap: 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .footer-content {
        gap: 35px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .top-bar-container {
        padding: 8px 15px;
    }
    
    .top-bar-left {
        font-size: 0.75rem;
        gap: 8px;
    }
    
    .social-icons {
        gap: 6px;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .header-container {
        padding: 10px 15px;
    }
    
    .brand-text h2 {
        font-size: 1rem;
    }
    
    .brand-tagline {
        font-size: 0.65rem;
    }
    
    .brand-icon {
        font-size: 1.4rem;
    }
    
    .hero {
        margin-top: 65px;
        padding-top: 60px;
    }
    
    .news-updates {
        margin-top: 0;
    }
    
    .btn-header {
        padding: 7px 14px;
        font-size: 0.8rem;
    }
    
    .slider-container {
        height: 85vh;
    }
    
    .slide-content {
        padding-top: 60px;
    }
    
    .slide-content h1 {
        font-size: 1.75rem;
        line-height: 1.25;
        margin-bottom: 16px;
    }
    
    .slide-label {
        font-size: 0.7rem;
        padding: 6px 10px;
        margin-bottom: 12px;
    }
    
    .slide-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 24px;
    }
    
    .slide-buttons {
        gap: 10px;
    }
    
    .slide-buttons {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .slide-buttons .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .slide-services {
        margin-top: 16px;
        padding-top: 16px;
    }
    
    .services-tag {
        font-size: 0.75rem;
    }
    
    .services-list {
        gap: 8px;
    }
    
    .services-list span {
        font-size: 0.75rem;
        padding: 6px 10px;
        flex: 1 1 auto;
        text-align: center;
        min-width: 120px;
    }
    
    .slide-stats {
        gap: 24px;
        margin-bottom: 24px;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .slide-features {
        margin-bottom: 24px;
    }
    
    .feature-item {
        font-size: 0.875rem;
        gap: 10px;
    }
    
    .feature-item i {
        font-size: 1rem;
    }
    
    .slide-certifications {
        gap: 12px;
        margin-bottom: 24px;
    }
    
    .cert-item {
        padding: 8px 12px;
        width: 100%;
        justify-content: center;
    }
    
    .cert-item i {
        font-size: 1rem;
    }
    
    .cert-item span {
        font-size: 0.8rem;
    }
    
    .slider-btn {
        width: 44px;
        height: 44px;
        font-size: 0.9rem;
    }
    
    .slider-btn.prev {
        left: 12px;
    }
    
    .slider-btn.next {
        right: 12px;
    }
    
    .slider-indicators {
        bottom: 24px;
        gap: 8px;
    }
    
    .indicator {
        width: 24px;
        height: 3px;
    }
    
    .indicator.active {
        width: 40px;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-card-image {
        height: 180px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i {
        font-size: 1.3rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .service-card .btn-link {
        font-size: 0.85rem;
    }
    
    .hero-buttons .btn {
        flex: 1 1 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .hero-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hero-stat-box {
        padding: 18px 15px;
    }
    
    .news-card {
        min-width: 260px;
        padding: 20px 15px;
    }
    
    .news-icon {
        width: 45px;
        height: 45px;
    }
    
    .news-icon i {
        font-size: 1.1rem;
    }
    
    .news-card h3 {
        font-size: 1rem;
    }
    
    .news-card p {
        font-size: 0.85rem;
    }
    
    .news-meta {
        font-size: 0.75rem;
    }
    
    .slider-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .contact-info-card {
        padding: 20px 15px;
    }
    
    .contact-info-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-info-icon i {
        font-size: 1.2rem;
    }
    
    .contact-info-card h3 {
        font-size: 1rem;
    }
    
    .contact-info-card p {
        font-size: 0.85rem;
    }
    
    .goal-card {
        padding: 1.25rem;
    }
    
    .goal-icon-wrapper {
        width: 55px;
        height: 55px;
    }
    
    .goal-icon-wrapper i {
        font-size: 1.3rem;
    }
    
    .goal-card h5 {
        font-size: 1rem;
    }
    
    .goal-card p {
        font-size: 0.85rem;
    }
    
    .about-stat {
        padding: 1.15rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .stat-value {
        font-size: 1.6rem;
    }
    
    .stat-text {
        font-size: 0.75rem;
    }
    
    .about .section-header h2 {
        font-size: 2rem;
    }
    
    .about-intro h3 {
        font-size: 1.75rem;
    }
    
    .why-choose-us h4,
    .stats-title,
    .goals-section h4 {
        font-size: 1.2rem;
    }
    
    .contact-form,
    .newsletter {
        padding: 25px 20px;
    }
    
    .product-overlay {
        padding: 25px 18px 18px;
    }
    
    .product-overlay h3 {
        font-size: 0.85rem;
    }
    
    .product-overlay h4 {
        font-size: 1.2rem;
    }
    
    .product-overlay p {
        font-size: 0.9rem;
    }
    
    .product-card {
        height: 320px;
    }
    
    .blog-card {
        padding: 25px 20px;
    }
    
    .blog-card h3 {
        font-size: 1.1rem;
    }
    
    .about-text h2 {
        font-size: 1.75rem;
    }
    
    .about-text .lead {
        font-size: 1.1rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
    
    .goals-section h3 {
        font-size: 1.5rem;
    }
    
    .goal-item {
        gap: 12px;
    }
    
    .goal-item i {
        font-size: 1.3rem;
    }
    
    .goal-item h4 {
        font-size: 1rem;
    }
    
    .goal-item p {
        font-size: 0.9rem;
    }
    
    .contact-form h3,
    .newsletter h3 {
        font-size: 1.3rem;
    }
    
    .contact-item {
        gap: 15px;
    }
    
    .contact-item i {
        font-size: 1.3rem;
    }
    
    .contact-item h3 {
        font-size: 1.1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-section p,
    .footer-section ul li a {
        font-size: 0.95rem;
    }
    
    section {
        padding: 45px 0;
    }
    
    .experience-badge {
        padding: 1.25rem 1.5rem;
    }
    
    .badge-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .experience-number {
        font-size: 2.25rem;
    }
    
    .experience-text {
        font-size: 0.8rem;
    }
    
    .about-intro .lead {
        font-size: 1.05rem;
    }
    
    .about-description p {
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .about .section-header h2 {
        font-size: 1.75rem;
    }
    
    .about-intro h3 {
        font-size: 1.5rem;
    }
    
    .goal-card,
    .about-stat,
    .why-choose-us,
    .about-stats-wrapper,
    .goals-section {
        padding: 1.15rem;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .goal-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .hero {
        margin-top: 60px;
        padding-top: 50px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .nav-brand h2 {
        font-size: 1.25rem;
    }
    
    .service-card,
    .blog-card {
        padding: 18px 12px;
    }
    
    .contact-form,
    .newsletter {
        padding: 18px 12px;
    }
    
    .news-card {
        min-width: 240px;
        padding: 18px 12px;
    }
    
    .hero-buttons .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .service-card h3,
    .goal-card h3,
    .contact-info-card h3 {
        font-size: 1rem;
    }
    
    .service-card p,
    .goal-card p,
    .contact-info-card p {
        font-size: 0.8rem;
    }
}

/* Landscape orientation for mobile devices */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-slider {
        margin-top: 65px;
    }
    
    .slider-container {
        height: 100vh;
    }
    
    .slide-content {
        padding-top: 60px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .slide-description {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
    
    .slide-stats,
    .slide-features,
    .slide-certifications {
        display: none;
    }
    
    .slide-services {
        display: none;
    }
    
    .slide-buttons {
        gap: 8px;
        margin-top: 16px;
        margin-bottom: 0;
    }
    
    .slide-buttons .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .slider-btn {
        width: 44px;
        height: 44px;
    }
    
    .slider-indicators {
        bottom: 20px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .product-card {
        height: 280px;
    }
}

/* Smooth scrolling for mobile */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Improve touch targets for mobile */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .menu-toggle {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Loading animation for images */
img {
    max-width: 100%;
    height: auto;
}

/* Fix for iOS Safari viewport units */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
}

/* Sticky Side Menu Styles */
.sticky-side-menu {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    border-radius: 12px 0 0 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateY(-50%) translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }
}

.side-menu-item {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    border: none;
    background: none;
}

.side-menu-item:hover {
    width: 70px;
    transform: scale(1.05);
}

.side-menu-item::before {
    content: attr(title);
    position: absolute;
    right: 100%;
    background: rgba(15, 23, 42, 0.95);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    margin-right: 12px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.side-menu-item:hover::before {
    opacity: 1;
    margin-right: 16px;
}

/* Language Switcher */
.language-switcher {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    position: relative;
}

.language-btn {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #fff;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
}

.language-btn i {
    font-size: 18px;
}

.language-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.language-dropdown {
    position: absolute;
    right: 100%;
    top: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: -4px 4px 24px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-right: 12px;
    overflow: hidden;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #1e293b;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.language-option:hover {
    background: #f1f5f9;
    border-left-color: #6366f1;
    padding-left: 20px;
}

.language-option.active {
    background: #ede9fe;
    border-left-color: #6366f1;
    color: #6366f1;
}

.language-option img {
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* WhatsApp */
.side-menu-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.side-menu-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

/* Call */
.side-menu-call {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.side-menu-call:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

/* Facebook */
.side-menu-facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0C63D4 100%);
}

.side-menu-facebook:hover {
    background: linear-gradient(135deg, #0C63D4 0%, #084D9E 100%);
}

/* X (Twitter) */
.side-menu-twitter {
    background: linear-gradient(135deg, #000000 0%, #14171A 100%);
}

.side-menu-twitter:hover {
    background: linear-gradient(135deg, #14171A 0%, #2C3640 100%);
}

/* Instagram */
.side-menu-instagram {
    background: linear-gradient(135deg, #E1306C 0%, #C13584 50%, #833AB4 100%);
}

.side-menu-instagram:hover {
    background: linear-gradient(135deg, #C13584 0%, #833AB4 50%, #5B51D8 100%);
}

/* Pulse animation for WhatsApp and Call */
.side-menu-whatsapp::after,
.side-menu-call::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: inherit;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sticky-side-menu {
        right: 0;
        top: auto;
        bottom: 0;
        transform: none;
        flex-direction: row;
        width: 100%;
        border-radius: 0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
        animation: slideInUp 0.6s ease-out;
    }

    @keyframes slideInUp {
        from {
            transform: translateY(100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .side-menu-item {
        flex: 1;
        width: auto;
        height: 50px;
        font-size: 18px;
    }

    .side-menu-item:hover {
        width: auto;
        transform: scale(1.1);
    }

    .side-menu-item::before {
        display: none;
    }

    .language-dropdown {
        right: auto;
        left: 50%;
        top: auto;
        bottom: 100%;
        transform: translateX(-50%) translateY(10px);
        margin-right: 0;
        margin-bottom: 12px;
    }

    .language-dropdown.active {
        transform: translateX(-50%) translateY(0);
    }

    .language-text {
        font-size: 10px;
    }

    .language-btn i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .side-menu-item {
        height: 48px;
        font-size: 16px;
    }

    .language-btn i {
        font-size: 14px;
    }

    .language-text {
        font-size: 9px;
    }
}

/* ===================================
   PERGOLA TYPES SECTION
   =================================== */

.pergola-types {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.pergola-types::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(196, 155, 56, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.pergola-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pergola-type-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out backwards;
}

.pergola-type-card:nth-child(1) { animation-delay: 0.1s; }
.pergola-type-card:nth-child(2) { animation-delay: 0.15s; }
.pergola-type-card:nth-child(3) { animation-delay: 0.2s; }
.pergola-type-card:nth-child(4) { animation-delay: 0.25s; }
.pergola-type-card:nth-child(5) { animation-delay: 0.3s; }
.pergola-type-card:nth-child(6) { animation-delay: 0.35s; }
.pergola-type-card:nth-child(7) { animation-delay: 0.4s; }
.pergola-type-card:nth-child(8) { animation-delay: 0.45s; }
.pergola-type-card:nth-child(9) { animation-delay: 0.5s; }
.pergola-type-card:nth-child(10) { animation-delay: 0.55s; }
.pergola-type-card:nth-child(11) { animation-delay: 0.6s; }
.pergola-type-card:nth-child(12) { animation-delay: 0.65s; }
.pergola-type-card:nth-child(13) { animation-delay: 0.7s; }
.pergola-type-card:nth-child(14) { animation-delay: 0.75s; }
.pergola-type-card:nth-child(15) { animation-delay: 0.8s; }
.pergola-type-card:nth-child(16) { animation-delay: 0.85s; }
.pergola-type-card:nth-child(17) { animation-delay: 0.9s; }
.pergola-type-card:nth-child(18) { animation-delay: 0.95s; }

.pergola-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(196, 155, 56, 0.2);
}

.pergola-type-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.pergola-type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pergola-type-card:hover .pergola-type-image img {
    transform: scale(1.1);
}

.pergola-type-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #c49b38 0%, #d4af4e 100%);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(196, 155, 56, 0.3);
}

.pergola-type-content {
    padding: 25px;
}

.pergola-type-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.pergola-type-content p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.pergola-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pergola-features span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(196, 155, 56, 0.1);
    color: #c49b38;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.pergola-features span i {
    font-size: 0.75rem;
}

/* Material Comparison */
.material-comparison {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
    padding: 60px 40px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.material-comparison::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(196, 155, 56, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.material-comparison h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    position: relative;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.comparison-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(196, 155, 56, 0.5);
    transform: translateY(-5px);
}

.comparison-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #c49b38 0%, #d4af4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(196, 155, 56, 0.3);
}

.comparison-card h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.comparison-card ul li {
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Pergola CTA */
.pergola-cta {
    background: linear-gradient(135deg, rgba(196, 155, 56, 0.1) 0%, rgba(196, 155, 56, 0.05) 100%);
    border: 2px solid rgba(196, 155, 56, 0.2);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    margin-top: 60px;
}

.pergola-cta h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.pergola-cta p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pergola-types {
        padding: 60px 0;
    }

    .pergola-types-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pergola-type-image {
        height: 200px;
    }

    .material-comparison {
        padding: 40px 20px;
    }

    .material-comparison h3 {
        font-size: 1.6rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pergola-cta {
        padding: 35px 20px;
    }

    .pergola-cta h3 {
        font-size: 1.5rem;
    }
}

/* Portfolio Section Styles */
.portfolio {
    background: var(--color-background);
    padding: 100px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out backwards;
}

.portfolio-item:nth-child(1) { animation-delay: 0.1s; }
.portfolio-item:nth-child(2) { animation-delay: 0.2s; }
.portfolio-item:nth-child(3) { animation-delay: 0.3s; }
.portfolio-item:nth-child(4) { animation-delay: 0.4s; }
.portfolio-item:nth-child(5) { animation-delay: 0.5s; }
.portfolio-item:nth-child(6) { animation-delay: 0.6s; }

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.95) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    color: white;
    width: 100%;
}

.portfolio-category {
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 20px;
    margin-bottom: 12px;
}

.portfolio-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.portfolio-info p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-accent);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: white;
    color: var(--color-accent);
    transform: translateX(5px);
}

/* Testimonials Section Styles */
.testimonials {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    padding: 100px 0;
}

.testimonials .section-header h2,
.testimonials .section-label {
    color: white;
}

.testimonials .section-header p {
    color: rgba(255, 255, 255, 0.85);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out backwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    display: flex;
    gap: 6px;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.125rem;
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--color-accent);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--color-border);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* FAQ Section Styles */
.faq {
    background: var(--color-white);
    padding: 100px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid var(--color-border);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out backwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

.faq-item:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.75rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--color-background);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0;
}

.faq-question i {
    font-size: 1rem;
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: var(--color-background);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.75rem 2rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin: 0;
}

/* Responsive Styles for New Sections */
@media (max-width: 768px) {
    .portfolio {
        padding: 60px 0;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-image {
        height: 300px;
    }

    .testimonials {
        padding: 60px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .faq {
        padding: 60px 0;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
}