/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: hsl(222.2 84% 4.9%);
    background-color: hsl(0 0% 100%);
}

/* Headline Fonts */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

/* CSS Custom Properties (Design System) */
:root {
    --background: 0 0% 100%;
    --foreground: 222.2 84% 4.9%;
    --card: 0 0% 100%;
    --card-foreground: 222.2 84% 4.9%;
    --popover: 0 0% 100%;
    --popover-foreground: 222.2 84% 4.9%;
    
    /* Professional logistics branding */
    --primary: 35 92% 54%; /* F6941C */
    --primary-foreground: 0 0% 98%;
    --primary-light: 35 92% 64%;
    
    --secondary: 15 8% 41%; /* 6b625f */
    --secondary-foreground: 0 0% 98%;
    
    --muted: 220 13% 96%;
    --muted-foreground: 215.4 16.3% 46.9%;
    
    --accent: 35 92% 54%;
    --accent-foreground: 0 0% 98%;
    
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;
    
    --border: 214.3 31.8% 91.4%;
    --input: 214.3 31.8% 91.4%;
    --ring: 35 92% 54%;
    
    --radius: 0.5rem;
    
    /* Custom logistics colours */
    --navy: 15 8% 41%;
    --navy-light: 15 8% 51%;
    --teal: 35 92% 54%;
    --teal-light: 35 92% 64%;
    --gray-light: 220 13% 96%;
    --text-muted: 215.4 16.3% 46.9%;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.25rem;
    padding: 0.5rem 1rem;
}

.btn-primary {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
    background-color: hsl(var(--primary-light));
}

.btn-outline {
    background-color: transparent;
    color: hsl(var(--foreground));
    border: 1px solid hsl(var(--border));
}

.btn-outline:hover {
    background-color: hsl(var(--muted));
}

.btn-ghost {
    background-color: transparent;
    color: hsl(var(--foreground));
}

.btn-ghost:hover {
    background-color: hsl(var(--muted));
}

.btn-large {
    font-size: 1.125rem;
    padding: 1rem 2rem;
}

/* Header Styles */
.header {
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-top-bar {
    height: 4px;
    background: linear-gradient(90deg, hsl(var(--primary)) 0%, hsl(var(--primary-light)) 100%);
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
    padding: 0.5rem 0;
}

.logo-image {
    height: 60px;
    width: auto;
    max-width: 250px;
}

.logo a {
    text-decoration: none;
    display: block;
}

.nav-desktop {
    display: none;
}

.nav-desktop .nav-link {
    color: hsl(var(--secondary));
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.nav-desktop .nav-link:hover,
.nav-desktop .nav-link.active {
    color: hsl(var(--primary));
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 0.25rem;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: hsl(var(--muted-foreground));
    padding: 0.75rem 1rem;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid hsl(var(--border));
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover,
.dropdown-content a.active {
    background-color: hsl(var(--primary));
    color: white;
}

/* Mobile Dropdown */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-content {
    display: none;
    background-color: hsl(var(--muted));
    padding-left: 1rem;
}

.mobile-dropdown.active .mobile-dropdown-content {
    display: block;
}

.mobile-dropdown-content a {
    display: block;
    padding: 0.5rem 1rem;
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    font-size: 0.9rem;
    border-left: 2px solid transparent;
    transition: all 0.3s ease;
}

.mobile-dropdown-content a:hover,
.mobile-dropdown-content a.active {
    color: hsl(var(--primary));
    border-left-color: hsl(var(--primary));
    background-color: rgba(0, 0, 0, 0.05);
}

.cta-desktop {
    display: none;
}

.mobile-menu-btn {
    display: block;
}

.menu-icon {
    font-size: 1.5rem;
}

.nav-mobile {
    display: none;
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
    border: 1px solid hsl(var(--border));
}

.nav-mobile.active {
    display: block;
}

.nav-mobile .nav-link {
    display: block;
    color: hsl(var(--secondary));
    text-decoration: none;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.nav-mobile .nav-link:hover,
.nav-mobile .nav-link.active {
    color: hsl(var(--primary));
}

.mobile-cta {
    width: 100%;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
        align-items: baseline;
        gap: 2rem;
    }
    
    .cta-desktop {
        display: block;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('src/assets/hero-logistics.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: left;
    color: white;
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-text {
    max-width: 64rem;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: white;
}

.hero-text h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
    .hero-text h1 {
        font-size: 4.5rem;
    }
    
    .hero-text h2 {
        font-size: 1.875rem;
    }
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: hsl(var(--background));
}

.about-content {
    max-width: 64rem;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.25rem;
    font-weight: 300;
    color: hsl(var(--foreground));
    margin-bottom: 3rem;
    line-height: 1.2;
}

.about-content h3 {
    font-size: 1.5rem;
    font-weight: 300;
    color: hsl(var(--foreground));
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.75;
    margin-bottom: 3rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .about-content h2 {
        font-size: 3rem;
    }
    
    .about-content h3 {
        font-size: 1.875rem;
    }
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: hsl(var(--muted));
}

.services-header {
    max-width: 64rem;
    margin: 0 auto 5rem;
}

.services-header h2 {
    font-size: 2.25rem;
    font-weight: 300;
    color: hsl(var(--foreground));
    margin-bottom: 2rem;
    line-height: 1.2;
}

.services-header h3 {
    font-size: 1.5rem;
    font-weight: 300;
    color: hsl(var(--foreground));
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .services-header h2 {
        font-size: 3rem;
    }
    
    .services-header h3 {
        font-size: 1.875rem;
    }
}

.services-list {
    max-width: 72rem;
    margin: 0 auto;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.service-item.reverse {
    flex-direction: column-reverse;
}

.service-image {
    width: 100%;
}

.service-image img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    border-radius: 0;
}

.service-content {
    width: 100%;
}

.service-content h3 {
    font-size: 1.875rem;
    font-weight: 300;
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem;
}

.service-content p {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.75;
    margin-bottom: 2rem;
}

.service-link {
    display: inline-block;
    color: hsl(var(--primary));
    font-weight: 500;
    font-size: 1.125rem;
    text-decoration: none;
    transition: color 0.2s ease;
    border-bottom: 1px solid hsl(var(--primary));
    padding-bottom: 0.25rem;
}

.service-link:hover {
    color: hsl(var(--primary-light));
    border-bottom-color: hsl(var(--primary-light));
}

@media (min-width: 1024px) {
    .service-item {
        flex-direction: row;
        gap: 4rem;
    }
    
    .service-item.reverse {
        flex-direction: row-reverse;
    }
    
    .service-image {
        width: 50%;
    }
    
    .service-content {
        width: 50%;
    }
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background-color: hsl(var(--secondary));
    color: white;
}

.stats {
    max-width: 72rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: hsl(var(--background));
}

.stat-number {
    font-size: 3.75rem;
    font-weight: 300;
    color: hsl(var(--primary));
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
    .stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 72rem;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2.25rem;
    font-weight: 300;
    color: hsl(var(--foreground));
    margin-bottom: 2rem;
    line-height: 1.2;
}

.contact-info > p {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 3rem;
    line-height: 1.75;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
}

/* Ship Map Video Section */
.ship-map-section h3 {
    font-size: 1.875rem;
    font-weight: 300;
    color: hsl(var(--foreground));
    margin-bottom: 2rem;
}

.video-container {
    position: relative;
    height: 400px;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid hsl(var(--border));
    background: #000;
}

.ship-map-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

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

.form-group label {
    color: hsl(var(--foreground));
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid hsl(var(--input));
    border-radius: 0.5rem;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: hsl(var(--ring));
    box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 6rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info h2 {
        font-size: 3rem;
    }
}

/* Footer */
.footer {
    background-color: hsl(var(--navy));
    color: white;
    padding: 3rem 0 1.5rem;
}

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

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 60px;
    max-width: 250px;
    object-fit: contain;
    background-color: white;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    line-height: 1.6;
    font-size: 1rem;
    text-align: left;
}

.footer-section p br {
    display: block;
    content: "";
    margin-top: 0.25rem;
}

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

.footer-section ul li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.6rem;
    font-size: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: hsl(var(--primary));
}

.footer-contact p {
    margin-bottom: 0.6rem;
    font-size: 1rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: hsl(var(--primary));
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-section:first-child {
        grid-column: span 2;
    }
}

/* Responsive Design */
@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text h2 {
        font-size: 1.25rem;
    }
    
    .about-content h2,
    .services-header h2,
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .about-content h3,
    .services-header h3 {
        font-size: 1.25rem;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
    }
    
    .contact-form h3 {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

/* Service Page Styles */
.service-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-hero-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* International Freight Hero Background */
.international-freight .service-hero-background {
    background-image: url('src/assets/air-freight.jpg');
}

/* Domestic Courier Hero Background */
.domestic-courier .service-hero-background {
    background-image: url('src/assets/domestic.jpg');
}

/* Warehousing Hero Background */
.warehousing .service-hero-background {
    background-image: url('src/assets/warehousing.jpg');
}

/* Customs Clearance Hero Background */
.customs-clearance .service-hero-background {
    background-image: url('src/assets/customs.jpg');
}

/* International Courier Hero Background */
.international-courier .service-hero-background {
    background-image: url('src/assets/international-courier.jpg');
}

/* About Page Hero Background */
.about-page .service-hero-background {
    background-image: url('src/assets/aboutus.jpg');
}

/* Contact Page Hero Background */
.contact-page .service-hero-background {
    background-image: url('src/assets/hero-logistics.jpg');
}

.service-hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.service-hero-content {
    position: relative;
    z-index: 2;
}

.service-overview {
    padding: 5rem 0;
    background-color: hsl(var(--background));
}

.service-overview-content {
    max-width: 64rem;
    margin: 0 auto;
}

.service-overview-text h2 {
    font-size: 2.25rem;
    font-weight: 300;
    color: hsl(var(--foreground));
    margin-bottom: 3rem;
    line-height: 1.2;
}

.service-overview-text p {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.service-overview-text ul {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.service-overview-text li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.125rem;
    line-height: 1.75;
    color: hsl(var(--muted-foreground));
}

.service-overview-text li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: hsl(var(--primary));
    font-weight: bold;
    font-size: 1.2rem;
}

.why-choose {
    padding: 5rem 0;
    background-color: hsl(var(--muted));
}

.why-choose-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.why-choose-text h2 {
    font-size: 2.25rem;
    font-weight: 300;
    color: hsl(var(--foreground));
    margin-bottom: 3rem;
    line-height: 1.2;
}

.why-choose-text p {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.75;
    margin-bottom: 2rem;
}

/* Responsive Design for Service Page */
@media (min-width: 768px) {
    .service-overview-text h2 {
        font-size: 3rem;
    }
    
    .why-choose-text h2 {
        font-size: 3rem;
    }
}

@media (max-width: 640px) {
    .service-overview-text h2 {
        font-size: 2rem;
    }
    
    .why-choose-text h2 {
        font-size: 2rem;
    }
}

/* Why Inva Logistics Component */
.why-inva {
    padding: 5rem 0;
    background-color: hsl(var(--muted));
}

.why-inva-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    max-width: 72rem;
    margin: 0 auto;
}

.why-inva-text {
    flex: 1;
}

.why-inva-text h2 {
    font-size: 2.25rem;
    font-weight: 300;
    color: hsl(var(--foreground));
    margin-bottom: 3rem;
    line-height: 1.2;
}

.why-inva-text p {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.why-inva-image {
    flex: 1;
    width: 100%;
}

.why-inva-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

@media (min-width: 1024px) {
    .why-inva-content {
        flex-direction: row;
        gap: 4rem;
    }
    
    .why-inva-text {
        flex: 1;
    }
    
    .why-inva-image {
        flex: 1;
    }
}

@media (min-width: 768px) {
    .why-inva-text h2 {
        font-size: 3rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    padding: 3rem 0;
    min-height: 40vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-page-content {
    padding: 5rem 0;
    background-color: hsl(var(--background));
}

.contact-page-grid {
    display: grid;
    gap: 4rem;
    max-width: 72rem;
    margin: 0 auto;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 2.25rem;
    font-weight: 300;
    color: hsl(var(--foreground));
    margin-bottom: 2rem;
    line-height: 1.2;
}

.contact-info-section p {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.75;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1rem;
    color: hsl(var(--foreground));
    margin-bottom: 0.25rem;
    line-height: 1.5;
}

.contact-item a {
    color: hsl(var(--foreground));
    text-decoration: none;
}

.contact-item a:hover {
    color: hsl(var(--primary));
}

.contact-form {
    background-color: hsl(var(--card));
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: hsl(var(--foreground));
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid hsl(var(--border));
    border-radius: 4px;
    font-size: 1rem;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 2px rgba(246, 148, 28, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

@media (min-width: 1024px) {
    .contact-page-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
    
    .contact-info-section h2,
    .contact-form-section h2 {
        font-size: 3rem;
    }
}

@media (max-width: 1023px) {
    .contact-page-grid {
        grid-template-areas: 
            "form"
            "info";
    }
    
    .contact-form {
        grid-area: form;
    }
    
    .contact-info-section {
        grid-area: info;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
.btn:focus,
.nav-link:focus,
.service-link:focus,
input:focus,
textarea:focus {
    outline: 2px solid hsl(var(--ring));
    outline-offset: 2px;
} 