* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #ffffff;
}

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

/* Navigation - unified header/dropdown (improved visuals + accessibility) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    box-shadow: 0 6px 20px rgba(16,24,40,0.06);
    border-bottom: 1px solid rgba(16,24,40,0.04);
    z-index: 1000;
    padding: 0.6rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo h2 {
    color: #0f172a;
    color: #1e88e5; /* brand blue */
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.3px;
}

.logo img {
    height: 45px;
    width: auto;
}

.footer-section img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.25rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #0f172a;
    font-weight: 600;
    padding: 0.45rem 0.6rem;
    border-radius: 8px;
    transition: background-color 180ms ease, color 180ms ease, transform 120ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus {
    background: linear-gradient(90deg,#06b6d4,#3b82f6);
    color: #fff;
    transform: translateY(-1px);
    outline: none;
    box-shadow: 0 8px 24px rgba(59,130,246,0.12);
}

.nav-menu a.active {
    background: linear-gradient(90deg,#06b6d4,#3b82f6);
    color: #fff;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown > a::after {
    content: '▾';
    display: inline-block;
    margin-left: 8px;
    font-size: 0.72rem;
    transition: transform 220ms ease;
    vertical-align: middle;
    color: rgba(15,23,42,0.7);
}

.dropdown:focus-within > a::after,
.dropdown:hover > a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(2,6,23,0.08);
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px) scale(0.98);
    transform-origin: top left;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
    z-index: 1100;
    list-style: none;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu li { margin: 0; }

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1rem;
    color: #0f172a;
    text-decoration: none;
    transition: background 120ms ease, color 120ms ease, border-left-color 120ms ease;
    border-left: 4px solid transparent;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
    background: linear-gradient(90deg, rgba(6,182,212,0.06), rgba(59,130,246,0.06));
    color: #0369a1;
    border-left-color: #06b6d4;
    outline: none;
}

/* Focus outlines for keyboard users */
.nav-menu a:focus,
.dropdown-menu a:focus {
    box-shadow: 0 0 0 4px rgba(59,130,246,0.12);
}

/* Mobile toggle button */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.hamburger {
    width: 24px;
    height: 3px;
    background: #1e293b;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 3px;
    background: #1e293b;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Responsive tweaks */
@media (max-width: 920px) {
    .nav-menu { gap: 0.6rem; }
    .logo h2 { font-size: 1.05rem; }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        width: 100%;
        padding: 12px 16px;
        text-align: left;
    }
    
    .dropdown-menu {
        position: static;
        background: rgba(248, 250, 252, 0.9);
        box-shadow: none;
        border-radius: 8px;
        margin-top: 8px;
        transform: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
    }
    
    .dropdown > a::after {
        float: right;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #D9E3EB, #ffffff);
}

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

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(83, 184, 228, 0.2);
    z-index: 2;
}

.vapor-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.vapor-particle {
    position: absolute;
    background: rgba(83, 184, 228, 0.1);
    border-radius: 50%;
    animation: vaporRise 12s ease-in-out infinite;
}

.vapor-particle:nth-child(1) {
    width: 150px;
    height: 150px;
    left: 10%;
    bottom: -75px;
    animation-delay: 0s;
}

.vapor-particle:nth-child(2) {
    width: 100px;
    height: 100px;
    left: 70%;
    bottom: -50px;
    animation-delay: 4s;
}

.vapor-particle:nth-child(3) {
    width: 120px;
    height: 120px;
    left: 40%;
    bottom: -60px;
    animation-delay: 8s;
}

@keyframes vaporRise {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 0;
    }
    20% {
        opacity: 0.6;
    }
    80% {
        opacity: 0.2;
    }
    100% {
        transform: translateY(-100vh) scale(1.5);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.hero-content > p {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 1.5rem;
}

.hero-subtext {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(83, 184, 228, 0.2);
}

.hero-subtext p {
    font-size: 1rem;
    color: #000000;
    line-height: 1.7;
}

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

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #6FE0BF, #53B8E4);
    color: white;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(111, 224, 191, 0.4);
    text-decoration: none;
}

.btn-secondary {
    background: rgba(83, 184, 228, 0.1);
    color: #53B8E4;
    border: 2px solid #53B8E4;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #53B8E4;
    color: white;
    transform: translateY(-3px);
    text-decoration: none;
}

/* Promise Section */
.promise-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.promise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(83,184,228,0.05)"/><circle cx="80" cy="40" r="3" fill="rgba(83,184,228,0.05)"/><circle cx="40" cy="80" r="1" fill="rgba(83,184,228,0.05)"/></svg>');
    opacity: 0.5;
}

.promise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.promise-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.promise-text h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.promise-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

/* Gas Categories Section */
.gas-categories {
    padding: 100px 0;
    background: linear-gradient(135deg, #D9E3EB, #f8fafc);
}

.gas-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.gas-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gas-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(83, 184, 228, 0.1), transparent);
    transition: left 0.5s;
}

.gas-card:hover::before {
    left: 100%;
}

.gas-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(83, 184, 228, 0.2);
}

.gas-image {
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
}

.gas-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gas-card h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.gas-tagline {
    color: #53B8E4;
    font-weight: 600;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gas-btn {
    background: linear-gradient(135deg, #6FE0BF, #53B8E4);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
}

.gas-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(111, 224, 191, 0.3);
}

/* Industries Section */
.industries-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M20,20 Q100,10 180,20 Q190,100 180,180 Q100,190 20,180 Q10,100 20,20" fill="none" stroke="rgba(83,184,228,0.1)" stroke-width="2"/></svg>');
    opacity: 0.3;
}

.industries-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.industry-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(83, 184, 228, 0.2);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: iconFloat 3s ease-in-out infinite;
}

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

.industry-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.industry-card p {
    color: #64748b;
}

/* Quality Section */
.quality-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quality-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=1200&h=800&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    animation: qualityParallax 20s ease-in-out infinite;
}

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

.quality-section .container {
    position: relative;
    z-index: 2;
}

.quality-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.quality-section > .container > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #cbd5e1;
}

.quality-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #6FE0BF;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #cbd5e1;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: #f8fafc;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.team-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-text h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.team-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.team-text blockquote {
    background: linear-gradient(135deg, #D9E3EB, #ffffff);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #53B8E4;
    font-style: italic;
    margin-top: 2rem;
}

.team-text cite {
    display: block;
    margin-top: 1rem;
    color: #53B8E4;
    font-weight: 600;
}

/* Safety Section */
.safety-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #D9E3EB, #ffffff);
}

.safety-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.safety-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.safety-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(83, 184, 228, 0.2);
}

.safety-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.safety-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.safety-card p {
    color: #64748b;
}

.safety-note {
    text-align: center;
    font-size: 1.1rem;
    color: #475569;
    font-style: italic;
}

/* Partners Section */
.partners-section {
    padding: 100px 0;
    background: white;
}

.partners-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.industry-group {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.industry-group:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(83, 184, 228, 0.2);
}

.industry-group h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
}

.industry-group ul {
    list-style: none;
    padding: 0;
}

.industry-group li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #64748b;
    font-weight: 500;
}

.industry-group li:last-child {
    border-bottom: none;
}

.testimonial {
    background: linear-gradient(135deg, #D9E3EB, #ffffff);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 3rem;
}

.testimonial p {
    font-size: 1.3rem;
    font-style: italic;
    color: #1e293b;
    margin-bottom: 1rem;
}

.testimonial cite {
    color: #53B8E4;
    font-weight: 600;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #53B8E4, #6FE0BF);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=1200&h=800&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    animation: ctaFloat 15s ease-in-out infinite;
}

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

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.cta-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s;
}

.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
    outline: none;
    border-color: #6FE0BF;
    box-shadow: 0 0 0 3px rgba(111, 224, 191, 0.3);
}

.btn-submit {
    background: linear-gradient(135deg, #6FE0BF, #53B8E4);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
    text-decoration: none;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(111, 224, 191, 0.4);
    text-decoration: none;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.quote-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quote-contact p {
    color: #cbd5e1;
    margin: 0;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.email-btn {
    background: #ea4335;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
    margin-top: 0.5rem;
    display: block;
}

.email-btn:hover {
    background: #d33b2c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(234, 67, 53, 0.3);
}

.footer-section h3 {
    color: #53B8E4;
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #53B8E4;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    padding: 0.5rem 1rem;
    background: rgba(83, 184, 228, 0.2);
    border-radius: 25px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #53B8E4;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .carousel-frame {
        width: 300px;
        height: 300px;
    }
    
    .promise-content,
    .team-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}