/* CSS Variables */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #2ecc71;
    --text-color: #333;
    --light-bg: #f8fafc;
    --border-radius: 10px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --transition: all 0.2s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

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

/* Project Overview Section */
.project-overview {
    padding: 6rem 0 4rem;
    background: #f8fafc;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.location {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 500;
}

.about-section {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 3rem;
}

.about-section h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.about-section p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
}

/* Logo and Contact Info */
.logo {
    height: 50px;
    display: flex;
    align-items: center;
}

.contact-info {
    display: flex;
    align-items: center;
}

.phone-number {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 30px;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.phone-number:hover {
    background-color: rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.phone-icon {
    margin-right: 8px;
    font-size: 1.2rem;
}

.logo-img {
    height: 100%;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/Smartworld-Elie-Saab.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    animation: zoomIn 20s ease-out forwards;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

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

@keyframes zoomIn {
    from {
        transform: scale(1.1);
        opacity: 0.8;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero {
        height: 80vh;
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 400px;
    }
    
    .hero::before {
        background-position: 30% center;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 60vh;
        min-height: 350px;
    }
}

/* Project Overview Section */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #2ecc71;
    --text-color: #333;
    --light-bg: #f8fafc;
    --border-radius: 10px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --transition: all 0.2s ease;
}

.project-overview {
    padding: 3rem 0;
    background: #f8fafc;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

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

.section-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.location {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.location:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.about-section {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.about-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.about-section p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
    color: #4a5568;
    font-size: 1rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.highlight-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--accent-color);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.highlight-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transition: all 0.3s ease;
}

.highlight-card:hover:before {
    height: 6px;
}

.highlight-card h4 {
    color: var(--primary-color);
    margin: 0 0 1.75rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    letter-spacing: -0.3px;
}

.highlight-card h4:before {
    content: '';
    display: inline-flex;
    width: 32px;
    height: 32px;
    margin-right: 12px;
    background-color: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 700;
    flex-shrink: 0;
}

.highlight-card:first-child h4:before {
    content: '1';
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(46, 204, 113, 0.2) 100%);
}

.highlight-card:last-child h4:before {
    content: '2';
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(52, 152, 219, 0.2) 100%);
}

.highlight-card h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 44px; /* Align with text after icon */
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    border-radius: 3px;
    opacity: 0.8;
}

.highlight-list, .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.highlight-list li, .feature-list li {
    padding: 0.9rem 0 0.9rem 2.5rem;
    color: var(--text-color);
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: rgba(248, 250, 252, 0.6);
}

.highlight-list li {
    flex-wrap: wrap;
    gap: 0.5rem;
}

.highlight-list li:hover, .feature-list li:hover {
    background: rgba(46, 204, 113, 0.03);
    transform: translateX(5px);
    box-shadow: 2px 0 0 0 var(--accent-color);
}

.feature-list li:hover {
    background: rgba(52, 152, 219, 0.03);
    box-shadow: 2px 0 0 0 var(--secondary-color);
}

.highlight-list li:last-child, .feature-list li:last-child {
    border-bottom: none;
}

.highlight-list li strong {
    color: var(--primary-color);
    min-width: 120px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-right: 0.5rem;
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1rem;
    background: rgba(46, 204, 113, 0.1);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-list li:hover:before {
    background: var(--accent-color);
    color: white;
    transform: scale(1.1);
}

/* Animation for list items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight-list li, .feature-list li {
    animation: fadeInUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    opacity: 0;
}

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

/* Unit Specifications Styles */
.unit-specs {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin: 2rem 0;
}

.unit-specs h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.unit-specs h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.specs-table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
    min-width: 600px;
}

.specs-table th,
.specs-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.specs-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.specs-table tbody tr:last-child td {
    border-bottom: none;
}

.specs-table tbody tr:hover {
    background-color: rgba(52, 152, 219, 0.05);
}

.specs-table td {
    color: var(--text-color);
    font-weight: 500;
}

.price-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

/* About M3M India Section */
.about-m3m {
    padding: 3rem 0;
    background-color: #f9fafc;
    margin: 3rem 0;
}

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

.about-m3m-content h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-m3m-content h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.about-m3m-content p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-m3m-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 400px;
}

.m3m-about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-m3m-image:hover .m3m-about-img {
    transform: scale(1.03);
}

@media (max-width: 992px) {
    .about-m3m-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-m3m-image {
        min-height: 350px;
        order: -1;
    }
    
    .about-m3m-content h3 {
        font-size: 1.8rem;
    }
}

/* Location Advantages Section */
.location-advantages {
    padding: 3rem 0;
    background-color: #fff;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 400px;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.location-image:hover img {
    transform: scale(1.03);
}

.location-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.location-content h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.advantages-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantage-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1.5rem;
}

.advantage-item:before {
    content: '•';
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.2rem;
    line-height: 1;
}

.advantage-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.advantage-text p {
    margin: 0;
    color: #444;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 400;
}

.advantage-item:hover {
    transform: translateX(5px);
}

/* Responsive Table */
@media (max-width: 768px) {
    .specs-table {
        min-width: 100%;
    }
    
    .specs-table th,
    .specs-table td {
        padding: 0.75rem 1rem;
    }
    
    .unit-specs {
        padding: 1.5rem;
    }
    
    .unit-specs h3 {
        font-size: 1.5rem;
    }
}

.feature-list li:nth-child(1) { animation-delay: 0.2s; }
.feature-list li:nth-child(2) { animation-delay: 0.3s; }
.feature-list li:nth-child(3) { animation-delay: 0.4s; }
.feature-list li:nth-child(4) { animation-delay: 0.5s; }
.feature-list li:nth-child(5) { animation-delay: 0.6s; }

/* Add a subtle animation to list items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight-list li, .feature-list li {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

/* Stagger the animation for list items */
.highlight-list li:nth-child(1), .feature-list li:nth-child(1) { animation-delay: 0.1s; }
.highlight-list li:nth-child(2), .feature-list li:nth-child(2) { animation-delay: 0.2s; }
.highlight-list li:nth-child(3), .feature-list li:nth-child(3) { animation-delay: 0.3s; }
.highlight-list li:nth-child(4), .feature-list li:nth-child(4) { animation-delay: 0.4s; }
.highlight-list li:nth-child(5), .feature-list li:nth-child(5) { animation-delay: 0.5s; }

.connectivity-section {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.connectivity-section h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
}

.connectivity-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.connectivity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.connectivity-item {
    display: flex;
    align-items: flex-start;
    background: var(--light-bg);
    padding: 1.25rem;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.connectivity-item .icon {
    font-size: 1.25rem;
    margin-right: 0.75rem;
    color: var(--secondary-color);
    min-width: 24px;
    text-align: center;
    margin-top: 2px;
}

.connectivity-item p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Project Advantages Section */
.project-advantages {
    padding: 5rem 0;
    background: white;
    width: 100%;
}

.project-advantages .container {
    display: flex;
    flex-wrap: nowrap;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.advantages-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.advantages-content h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.advantages-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.advantages-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.advantages-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.advantages-list strong {
    color: var(--primary-color);
    font-weight: 600;
}

.advantages-content {
    flex: 1;
    min-width: 50%;
    padding-right: 2rem;
}

.advantages-image {
    flex: 1;
    min-width: 40%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: sticky;
    top: 2rem;
}

.advantages-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.advantages-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.advantages-image:hover img {
    transform: scale(1.03);
}

/* Responsive Design */
@media (max-width: 992px) {
    .project-advantages .container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .advantages-content {
        width: 100%;
        padding-right: 0;
    }
    
    .advantages-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        position: static;
    }
}

@media (max-width: 768px) {
    .project-overview {
        padding: 2rem 0;
    }
    
    .about-section, .connectivity-section {
        padding: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .highlight-card {
        padding: 1.5rem 1.25rem;
    }
    
    .connectivity-item {
        padding: 1rem;
    }
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.contact-form-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.contact-form-section h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form {
    width: 100%;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px 20px;
}

.form-group {
    flex: 1;
    min-width: 250px;
    padding: 0 15px;
    margin-bottom: 20px;
}

.form-group.full-width {
    flex: 0 0 100%;
    max-width: 100%;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e5ee;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    background-color: #f9fafc;
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 35px;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.form-submit {
    text-align: center;
    margin-top: 20px;
}

.submit-btn {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 12px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 3rem 0;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .form-group {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .contact-form-section h2 {
        font-size: 2rem;
    }
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .logo {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .logo {
        height: 35px;
    }
}