/* Gilroy Font Faces */
@font-face {
    font-family: 'Gilroy';
    src: url('Gilroy Font/Gilroy-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('Gilroy Font/Gilroy-UltraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('Gilroy Font/Gilroy-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('Gilroy Font/Gilroy-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('Gilroy Font/Gilroy-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('Gilroy Font/Gilroy-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('Gilroy Font/Gilroy-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('Gilroy Font/Gilroy-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('Gilroy Font/Gilroy-Heavy.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('Gilroy Font/Gilroy-Black.ttf') format('truetype');
    font-weight: 950;
    font-style: normal;
}

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

/* Sticky Top Section - Only Navigation */
.sticky-top-section {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
}

:root {
    /* Brand Colors from Logo */
    --primary-teal: #4ECDC4;
    --secondary-navy: #2C3E50;
    --accent-gold: #F1C40F;
    --cream: #F8F8F8;
    --white: #FFFFFF;
    --dark-gray: #34495E;
    --light-gray: #ECF0F1;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
}

body {
    font-family: 'Gilroy', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--primary-teal);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #45B7B8;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--accent-gold);
    color: var(--secondary-navy);
}

.btn-secondary:hover {
    background-color: #F39C12;
    transform: translateY(-2px);
}

/* Top Banner with Logo and Contact Info */
.top-banner {
    background-color: var(--primary-teal);
    color: var(--white);
    padding: 20px 0;
    font-size: 14px;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.banner-left {
    flex-shrink: 0;
}

.banner-logo {
    height: 120px;
    width: auto;
    /* Remove filter to show original logo colors */
}

.banner-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.banner-contact-info {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.banner-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
}

.banner-contact-item i {
    font-size: 18px;
    color: var(--white);
    min-width: 20px;
    opacity: 0.9;
}

.banner-contact-item div {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.banner-contact-item strong {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
}

.banner-contact-item span {
    color: var(--white);
    font-size: 13px;
    opacity: 0.8;
}

.banner-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

/* Navigation */
.navigation {
    background: linear-gradient(135deg, var(--secondary-navy) 0%, #34495E 100%);
    padding: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
}

.navigation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-teal) 0%, var(--accent-gold) 100%);
}

.navigation .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    position: relative;
}

.nav-menu::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--primary-teal);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
}

.nav-menu li {
    position: relative;
    overflow: hidden;
}

.nav-menu li a {
    display: block;
    padding: 22px 28px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 2;
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-teal), #45B7B8);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-menu li a:hover::before,
.nav-menu li a.active::before {
    left: 0;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--white);
    transform: translateY(-2px);
}

.nav-menu li a.active {
    background: linear-gradient(45deg, var(--primary-teal), #45B7B8);
}

.nav-menu li a.active::before {
    left: 0;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    padding: 22px 25px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.search-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-teal);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.search-icon:hover::before {
    width: 100%;
    height: 100%;
}

.search-icon:hover {
    color: var(--white);
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent 0%, rgba(248, 248, 248, 0.3) 40%, rgba(248, 248, 248, 0.7) 70%, var(--cream) 100%);
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Hero_Image.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content .highlight {
    color: var(--primary-teal);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}


/* About Us Section */
.about-us {
    padding: 80px 0;
    background-color: var(--cream);
    position: relative;
    margin-top: -40px;
    padding-top: 100px;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-description p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 17px;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.15);
    transition: all 0.3s ease;
    background: var(--white);
    padding: 20px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.about-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-gold) 100%);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.about-logo:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(78, 205, 196, 0.25);
    border-color: var(--primary-teal);
}

.about-logo:hover::before {
    opacity: 0.05;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-teal);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.certifications {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.cert-item {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cert-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--accent-gold));
}

.cert-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-teal);
    box-shadow: 0 15px 35px rgba(78, 205, 196, 0.2);
}

.cert-item i {
    font-size: 32px;
    color: var(--primary-teal);
    margin-bottom: 15px;
}

.cert-item span {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-navy);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--cream);
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 35px;
    color: var(--white);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-navy);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--white);
}

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

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-item i {
    font-size: 50px;
    color: var(--primary-teal);
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-navy);
    margin-bottom: 12px;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: 80px 0;
    background-color: var(--cream);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -15px;
    width: 30px;
    height: 2px;
    background-color: var(--primary-teal);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-navy);
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-light);
    font-size: 14px;
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background-color: var(--white);
}

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

.testimonial {
    background-color: var(--cream);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.testimonial-image-placeholder {
    width: 80px;
    height: 80px;
    background-color: var(--light-gray);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-image-placeholder i {
    font-size: 35px;
    color: var(--text-light);
}

.testimonial blockquote {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.testimonial cite {
    color: var(--primary-teal);
    font-weight: 600;
    font-style: normal;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logo-placeholder {
    width: 150px;
    height: 80px;
    background-color: var(--light-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 14px;
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info h2 {
    font-size: 32px;
    color: var(--secondary-navy);
    margin-bottom: 15px;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 16px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-detail i {
    font-size: 20px;
    color: var(--primary-teal);
    margin-top: 5px;
}

.contact-detail strong {
    display: block;
    color: var(--secondary-navy);
    font-weight: 600;
    margin-bottom: 3px;
}

.contact-detail span {
    color: var(--text-light);
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
}

.map-container {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Footer */
.footer {
    background-color: var(--secondary-navy);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--accent-gold);
}

.footer-section h4 {
    color: var(--primary-teal);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-teal);
}

.footer-section ul li i {
    color: var(--primary-teal);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid var(--dark-gray);
    padding-top: 30px;
    text-align: center;
    color: var(--light-gray);
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

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

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(44, 62, 80, 0.8);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 20px;
    border-bottom: 2px solid var(--light-gray);
    background: linear-gradient(135deg, var(--primary-teal) 0%, #45B7B8 100%);
}

.mobile-logo {
    height: 70px;
    width: auto;
    /* Removed filter to show original logo colors */
}

.mobile-close-btn {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.mobile-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.mobile-menu-content {
    padding: 30px 0;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid var(--light-gray);
}

.mobile-nav-menu li:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    display: block;
    padding: 18px 25px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-teal);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav-link:hover::before,
.mobile-nav-link.active::before {
    transform: translateX(0);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary-teal);
    background: rgba(78, 205, 196, 0.1);
    padding-left: 35px;
}

.mobile-contact-info {
    margin: 40px 25px 30px;
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-teal);
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 8px 0;
}

.mobile-contact-item:last-child {
    margin-bottom: 0;
}

.mobile-contact-item i {
    font-size: 16px;
    color: var(--primary-teal);
    width: 20px;
    text-align: center;
}

.mobile-contact-item span {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
}

.mobile-cta {
    margin: 30px 25px;
    text-align: center;
}

.mobile-quote-btn {
    width: 100%;
    padding: 15px 25px;
    font-size: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
}

.mobile-quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 25px 20px;
    padding-top: 25px;
    border-top: 1px solid var(--light-gray);
}

.mobile-social a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, #45B7B8 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(78, 205, 196, 0.3);
}

.mobile-social a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
    background: linear-gradient(135deg, var(--accent-gold) 0%, #F39C12 100%);
}

/* Scroll Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-down {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Active states */
.fade-in-up.animate,
.fade-in-left.animate,
.fade-in-right.animate,
.fade-in-scale.animate,
.fade-in-down.animate {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Stagger delays for grid items */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Hero content animation */
.hero-content h1 {
    opacity: 0;
    transform: translateY(40px);
    animation: heroTitleIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.hero-content p {
    opacity: 0;
    transform: translateY(30px);
    animation: heroTextIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
}

.hero-content .btn {
    opacity: 0;
    transform: translateY(20px);
    animation: heroButtonIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s forwards;
}

@keyframes heroTitleIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroTextIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroButtonIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .fade-in-up,
    .fade-in-left,
    .fade-in-right,
    .fade-in-scale,
    .fade-in-down {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .hero-content h1,
    .hero-content p,
    .hero-content .btn {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .sticky-top-section {
        position: sticky;
        top: 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .top-banner {
        padding: 15px 0;
        background: linear-gradient(135deg, var(--primary-teal) 0%, #45B7B8 100%);
    }
    
    .banner-content {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    /* First row: Logo on left, buttons on right */
    .banner-left {
        order: 1;
        display: flex;
        align-items: center;
    }
    
    .banner-right {
        order: 1;
        display: flex;
        align-items: center;
        gap: 12px;
        margin-left: auto;
    }
    
    /* Make first row with logo and buttons */
    .banner-left,
    .banner-right {
        align-self: flex-start;
    }
    
    .banner-content {
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto auto;
        gap: 15px;
        align-items: center;
    }
    
    .banner-left {
        grid-column: 1;
        grid-row: 1;
    }
    
    .banner-right {
        grid-column: 3;
        grid-row: 1;
    }
    
    .banner-center {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-self: center;
    }
    
    .banner-logo {
        height: 70px;
        width: auto;
    }
    
    .banner-contact-info {
        display: flex;
        gap: 8px;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    .banner-contact-item {
        display: flex;
        align-items: center;
        gap: 8px;
        flex: 1;
        background: rgba(255, 255, 255, 0.15);
        padding: 10px 8px;
        border-radius: 15px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        min-width: 0;
        transition: all 0.3s ease;
    }
    
    .banner-contact-item:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-2px);
    }
    
    .banner-contact-item i {
        font-size: 16px;
        color: var(--white);
        min-width: 16px;
        opacity: 1;
        text-align: center;
    }
    
    .banner-contact-item div {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
        gap: 1px;
        overflow: hidden;
    }
    
    .banner-contact-item strong {
        font-size: 11px;
        font-weight: 700;
        color: var(--white);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .banner-contact-item span {
        font-size: 9px;
        color: var(--white);
        opacity: 0.85;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .banner-right .btn {
        padding: 8px 16px;
        font-size: 12px;
        border-radius: 20px;
        font-weight: 700;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        background: var(--white);
        color: var(--primary-teal);
        transition: all 0.3s ease;
    }
    
    .banner-right .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        background: var(--accent-gold);
        color: var(--secondary-navy);
    }
    
    .mobile-menu-btn {
        display: flex;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 8px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 10px;
        width: 40px;
        height: 40px;
    }
    
    .mobile-menu-btn:hover {
        background: rgba(255, 255, 255, 0.25);
    }

    .nav-menu {
        display: none;
    }

    .search-container {
        display: none;
    }

    .navigation .container {
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    /* Move GET ESTIMATE button to right side in mobile */
    .hero-content {
        position: relative;
    }
    
    .hero-content .btn-secondary {
        position: absolute;
        right: 0;
        margin-top: 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .about-logo {
        max-width: 220px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .certifications {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .partner-logos {
        gap: 20px;
    }
    
    .partner-logo-placeholder {
        width: 120px;
        height: 60px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 500px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mobile-menu {
        width: 280px;
        max-width: 90vw;
    }

    .mobile-menu-header {
        padding: 20px 20px 15px;
    }

    .mobile-logo {
        height: 40px;
    }

    .mobile-contact-info {
        margin: 30px 20px 25px;
        padding: 20px;
    }

    .mobile-cta {
        margin: 25px 20px;
    }

    .mobile-social {
        margin: 25px 20px 15px;
    }

    .mobile-social a {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}
