/* Base Styles */
@import url('./spacing-system.css');

:root {
    --navy: #141a26;       /* Headers, footers, navigation, primary accents */
    --white: #ffffff;      /* Main backgrounds, body text (inverse) */
    --gold-dark: #90691a;  /* Headings, primary buttons, key highlights */
    --gold-light: #d8ba60; /* Borders, hover states, dividers, subtle accents */
    --text-dark: #141a26;  /* Body text - using Navy for consistency and readability */
    --text-light: #5a6270; /* Lighter text for contrast */
    --light-bg: #f9f9f9;
    --error: #e74c3c;
    --success: #2ecc71;
    --transition: var(--transition-normal);
}

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

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--white);
    scroll-behavior: smooth;
}

p {
    margin-bottom: var(--paragraph-margin);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    color: var(--gold-dark);
    margin-bottom: var(--heading-margin);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-gap);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Buttons */
/* Enhanced Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: var(--border-radius-xl);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 0.5px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-normal);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
    color: var(--white);
    border-color: var(--gold-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(144, 105, 26, 0.3);
}

.btn-white {
    background-color: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.btn-white:hover {
    background-color: var(--gold-light);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Enhanced Header */
header {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2436 100%);
    box-shadow: var(--shadow-md);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(216, 186, 96, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-gap);
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo-image {
    height: min(90px, var(--header-height));
    width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.1) contrast(1.05);
    position: relative;
}

.nav-logo-image::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.nav-logo-image:hover {
    transform: scale(1.08) translateY(-2px);
    filter: brightness(1.2) contrast(1.1) drop-shadow(0 4px 12px rgba(144, 105, 26, 0.3));
}

.nav-logo-image:hover::before {
    opacity: 0.6;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--grid-gap-md);
}

.nav-links ul {
    display: flex;
    gap: var(--element-gap);
}

.nav-links a {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-normal);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold-light);
    background-color: rgba(216, 186, 96, 0.1);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    transition: var(--transition-normal);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 80%;
}

/* Enhanced Page Header */
.page-header {
    min-height: 50vh;
    padding-top: calc(var(--header-height) + 40px + env(safe-area-inset-top));
    padding-bottom: var(--space-2xl);
    padding-left: var(--container-gap);
    padding-right: var(--container-gap);
    background: linear-gradient(135deg, rgba(20, 26, 38, 0.8) 0%, rgba(20, 26, 38, 0.6) 100%), url('../images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    background-color: var(--navy);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(216, 186, 96, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-header .container {
    padding-top: 40px;
    width: 100%;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: var(--space-lg);
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

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

/* Contact Section */
.contact-section {
    padding: var(--section-padding) 0;
}

/* Privacy Policy Section */
.privacy-section {
    padding: var(--section-padding) 0;
    background: rgba(20, 26, 38, 0.03);
    border-top: 1px solid rgba(216, 186, 96, 0.2);
}
.privacy-section h2 {
    color: var(--navy);
    margin-bottom: var(--space-md);
}
.privacy-section p {
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
    max-width: 60ch;
}
.privacy-close {
    margin-top: var(--space-sm);
}

/* Connection Message Section */
.connection-message {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2436 100%);
    border-radius: var(--border-radius-lg);
    padding: var(--section-padding);
    margin-bottom: var(--section-padding);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--grid-gap-lg);
    align-items: center;
}

.connection-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.message-content {
    color: var(--white);
    z-index: 1;
}

.message-content h2 {
    color: var(--gold-light);
    margin-bottom: var(--space-lg);
    font-size: 2.2rem;
    font-weight: 700;
}

.message-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.message-photo {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}


.contact-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--grid-gap-lg);
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .connection-message {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .message-photo {
        margin-top: var(--space-lg);
    }
}

.contact-info {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2436 100%);
    color: var(--white);
    padding: var(--card-padding);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: var(--space-xl);
    border-bottom: 2px solid var(--gold-dark);
    padding-bottom: var(--space-md);
    display: inline-block;
}

.info-item {
    display: flex;
    margin-bottom: var(--space-xl);
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: var(--space-lg);
    margin-top: var(--space-xs);
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.info-item:hover i {
    transform: scale(1.2);
}

.info-item h3 {
    color: var(--white);
    margin-bottom: var(--space-xs);
    font-size: 1.1rem;
}

.info-item p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Enhanced Contact Form */
.form-container {
    background: var(--white);
    padding: var(--card-padding);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(216, 186, 96, 0.1);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.form-container:hover::before {
    transform: scaleX(1);
}

.form-container h2 {
    color: var(--navy);
    margin-bottom: var(--space-xl);
    border-bottom: 2px solid var(--gold-light);
    padding-bottom: var(--space-md);
    display: inline-block;
}

/* Form Row for side-by-side fields */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--form-gap);
    margin-bottom: var(--form-gap);
}

.form-group {
    margin-bottom: var(--form-gap);
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-group label::after {
    content: '*';
    color: var(--gold-dark);
    margin-left: 2px;
}

.form-group label:not([for*="Name"]):not([for*="Email"]):not([for*="Phone"]):not([for*="Enquiry"]):not([for*="Message"])::after {
    content: '';
}

.form-group:focus-within label {
    color: var(--gold-dark);
    transform: translateY(-2px);
}

/* Enhanced Form Controls */
.form-control {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #e1e5e9;
    border-radius: var(--border-radius-md);
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #fafbfc;
    position: relative;
}

.form-control:hover {
    border-color: var(--gold-light);
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(144, 105, 26, 0.1);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-dark);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(144, 105, 26, 0.15), 0 4px 12px rgba(144, 105, 26, 0.2);
    transform: translateY(-2px);
}

/* Select dropdown styling */
select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2390691a' 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 16px center;
    background-size: 20px;
    padding-right: 50px;
}

select.form-control:hover {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d8ba60' 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");
}

textarea.form-control {
    resize: vertical;
    min-height: 180px;
    line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select::placeholder {
    color: var(--text-light);
    opacity: 0.7;
    transition: var(--transition-normal);
    font-style: italic;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder,
.form-group select:focus::placeholder {
    opacity: 0.3;
    transform: translateY(-2px);
}

/* Error and Success States */
.error-message {
    color: var(--error);
    font-size: 0.9rem;
    margin-top: var(--space-xs);
    display: none;
    font-weight: 500;
}

.form-group.error .form-control {
    border-color: var(--error);
    background-color: rgba(231, 76, 60, 0.05);
}

.form-group.error .form-control:focus {
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.15);
}

.form-group.error .error-message {
    display: block;
    animation: slideDown 0.3s ease-out;
}

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

/* Form Help Text */
.form-help {
    display: block;
    margin-top: var(--space-xs);
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    opacity: 0.8;
}

/* Form Reassurance */
.form-reassurance {
    text-align: center;
    margin-top: var(--space-lg);
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    opacity: 0.9;
    line-height: 1.4;
}

/* Enhanced Connection Message */
.connection-message .message-content h2 {
    color: var(--navy);
    margin-bottom: var(--space-lg);
}


.success-message {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.15) 0%, rgba(46, 204, 113, 0.08) 100%);
    color: #27ae60;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: var(--space-lg);
    display: none;
    border: 2px solid #27ae60;
    font-weight: 600;
    animation: slideInSuccess 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(46, 204, 113, 0.2);
}

.success-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.success-message i {
    margin-right: 10px;
    font-size: 1.3rem;
    animation: checkBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.success-message strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: #229954;
}

.success-message p {
    color: #27ae60;
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.9;
}

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

@keyframes checkBounce {
    0% {
        transform: scale(0) rotate(-45deg);
    }
    50% {
        transform: scale(1.1) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Enhanced Submit Button */
.form-submit {
    text-align: center;
    margin-top: var(--space-xl);
    position: relative;
}

.btn-submit {
    min-width: 250px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: var(--transition-slow);
}

.btn-submit:active::after {
    width: 300px;
    height: 300px;
}

/* Enhanced Google Maps Section */
.map-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #f0f0f0 100%);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-gap);
}

.map-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.map-header h3 {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: var(--space-md);
}

.map-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

.map-wrapper {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--space-xl);
    position: relative;
}

.google-map {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.map-actions {
    display: flex;
    justify-content: center;
    gap: var(--element-gap);
    flex-wrap: wrap;
}

.map-actions .btn {
    min-width: 200px;
    text-align: center;
    gap: var(--space-sm);
}

.map-actions .btn i {
    font-size: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .google-map {
        height: 300px;
    }
    
    .map-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .map-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .map-header h3 {
        font-size: 1.8rem;
    }
}

/* Enhanced Footer */
footer {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2436 100%);
    color: var(--white);
    padding: var(--section-padding) 0 var(--space-xl);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    opacity: 0.5;
}

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

.footer h3, .footer h4 {
    color: var(--gold-light);
    margin-bottom: var(--heading-margin);
    position: relative;
}

.footer h3::after, .footer h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    border-radius: 1px;
}

.footer-links ul li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: rgba(255,255,255,0.8);
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: var(--element-gap);
    justify-content: center;
    margin-top: var(--space-lg);
}

.social-links a {
    color: var(--white);
    font-size: 1.2rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(216, 186, 96, 0.3);
    border-radius: 50%;
    transition: var(--transition-normal);
    background: rgba(255,255,255,0.05);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    border-color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* Enhanced Form Validation Styles */
.error-message {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: var(--space-md);
    border-radius: var(--border-radius-md);
    margin-bottom: var(--space-lg);
    display: none;
    align-items: center;
    gap: var(--space-sm);
    box-shadow: var(--shadow-md);
    animation: slideDown 0.3s ease;
}

.error-message.show {
    display: flex;
}

.error-feedback {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: var(--space-xs);
    display: none;
    align-items: center;
    gap: var(--space-xs);
    animation: fadeIn 0.3s ease;
}

.error-feedback.show {
    display: flex;
}

.error-feedback i {
    font-size: 0.8rem;
}

.form-control.error {
    border-color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.05);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-control.success {
    border-color: #27ae60;
    background-color: rgba(39, 174, 96, 0.05);
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 3px rgba(144, 105, 26, 0.1);
    transform: translateY(-1px);
}

.form-group {
    position: relative;
}

.character-count {
    position: absolute;
    right: 0;
    bottom: -20px;
    font-size: 0.75rem;
    color: var(--text-light);
}

.character-count.warning {
    color: #f39c12;
}

.character-count.danger {
    color: #e74c3c;
}

.checkbox-group {
    margin-bottom: var(--space-lg);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-dark);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: var(--gold-dark);
    border-color: var(--gold-dark);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

.privacy-link {
    color: var(--gold-dark);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.privacy-link:hover {
    border-bottom-color: var(--gold-dark);
}

.form-actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.btn-reset {
    background-color: transparent;
    border: 2px solid var(--gold-light);
    color: var(--gold-dark);
}

.btn-reset:hover {
    background-color: var(--gold-light);
    color: var(--white);
}

.btn-spinner {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

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

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

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--navy);
        flex-direction: column;
        padding: var(--space-xl);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        display: none;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    
    .connection-message {
        grid-template-columns: 1fr;
        padding: var(--space-lg);
        text-align: center;
    }
    
    .message-content h2 {
        font-size: 1.8rem;
    }
    
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-control {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .btn-submit {
        min-width: 200px;
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .page-header {
        min-height: calc(100vh - var(--header-height) - 80px);
        padding-top: calc(var(--header-height) + 30px + env(safe-area-inset-top));
        padding-bottom: var(--space-xl);
    }
    
    .page-header .container {
        padding-top: 20px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1rem;
    }
}
