/* ============================================
   CSS Variables & Base Styles
   ============================================ */
:root {
    --primary: #1A2F4B;
    --secondary: #064E3B;
    --accent: #D4AF37;
    --beige: #FDFCF8;
    --white: #FFFFFF;
    --slate-900: #0F172A;
    --slate-600: #475569;
    --slate-500: #64748B;
    --slate-400: #94A3B8;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--beige);
    color: var(--slate-900);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   Typography
   ============================================ */
.font-serif {
    font-family: 'Cormorant Garamond', serif;
}

/* ============================================
   Utility Classes
   ============================================ */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 16px;
}

.section-badge.badge-light {
    color: var(--accent);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 24px;
}

.section-title.title-light {
    color: var(--white);
}

.title-italic {
    font-style: italic;
}

.section-description {
    color: var(--slate-600);
    font-size: 18px;
    line-height: 1.8;
    font-weight: 300;
}

.title-underline {
    width: 96px;
    height: 4px;
    background-color: var(--accent);
    margin: 24px auto 0;
}

/* ============================================
   Scroll Animations
   ============================================ */
/* Content visible by default - will be hidden by JS if needed */
.reveal-left,
.reveal-right,
.reveal-up {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateY(0) scale(1);
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Only apply animations if JS is enabled */
.js .reveal-left,
.js .reveal-right,
.js .reveal-up {
    opacity: 0;
}

.js .reveal-left {
    transform: translate3d(-100px, 0, 0) rotateY(-20deg) scale(0.95);
}

.js .reveal-right {
    transform: translate3d(100px, 0, 0) rotateY(20deg) scale(0.95);
}

.js .reveal-up {
    transform: translate3d(0, 60px, 0) scale(0.98);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.active,
.reveal-right.active,
.reveal-up.active {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateY(0) scale(1);
}

.transform-gpu {
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

/* ============================================
   Navbar
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    background-color: rgba(253, 252, 248, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 24px;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s ease;
    display: block;
}

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

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

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 220px;
    width: auto;
    max-width: 500px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.05em;
}

.logo-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    margin-top: 8px;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 24px;
    justify-content: center;
    flex: 1;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    color: rgba(26, 47, 75, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: var(--accent);
}

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

.dropdown-toggle {
    cursor: pointer;
    pointer-events: auto;
    position: relative;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    width: 12px;
    height: 12px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    margin-top: 0;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1060 !important;
    padding: 8px 0;
    border: 1px solid rgba(26, 47, 75, 0.1);
    pointer-events: none;
    display: block !important;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
    pointer-events: auto !important;
    display: block !important;
}

/* Fix gap between toggle and menu */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 12px;
    z-index: 1059;
    background: transparent;
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--slate-600);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background-color: var(--beige);
    color: var(--primary);
    border-left-color: var(--accent);
    padding-left: 24px;
}

.nav-cta-btn {
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(26, 47, 75, 0.2);
}

.nav-cta-btn:hover {
    background-color: var(--secondary);
    transform: scale(1.05);
}

.nav-cta-btn:active {
    transform: scale(0.95);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-phone:hover {
    color: var(--accent);
    text-decoration: none;
}

.nav-phone svg {
    flex-shrink: 0;
}

.btn-nav-publish {
    background-color: var(--secondary);
    color: var(--white);
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(6, 78, 59, 0.2);
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.btn-nav-publish:hover {
    background-color: #053d2f;
    transform: scale(1.05);
    color: var(--white);
    text-decoration: none;
}

.btn-nav-publish:active {
    transform: scale(0.95);
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('https://images.unsplash.com/photo-1507842217343-583bb7270b66?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26, 47, 75, 0.95), rgba(26, 47, 75, 0.8), transparent);
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 24px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 10;
}

.hero-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    perspective: 1000px;
}

.form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 24px;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.form-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    font-weight: 600;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--white);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

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

.form-file-input {
    padding: 10px 14px;
    border: 2px dashed rgba(212, 175, 55, 0.5) !important;
    background: rgba(212, 175, 55, 0.05) !important;
    cursor: pointer;
    font-size: 13px;
}

.form-file-input:hover {
    border-color: var(--accent) !important;
    background: rgba(212, 175, 55, 0.1) !important;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23D4AF37'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.form-select option {
    background-color: var(--primary);
    color: var(--white);
}

.form-submit-btn {
    width: 100%;
    background-color: var(--accent);
    color: var(--primary);
    font-weight: 700;
    padding: 16px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.form-submit-btn:hover {
    background-color: var(--white);
    transform: scale(1.02);
}

.form-footer {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    text-align: center;
    margin-top: 24px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    gap: 32px;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-badge {
    display: inline-block;
    padding: 4px 16px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 9999px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    width: fit-content;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
}

.hero-title-accent {
    color: var(--accent);
    font-style: italic;
}

.hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-weight: 300;
    max-width: 512px;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 16px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.2);
    color: var(--accent);
    transition: background-color 0.3s ease;
}

.hero-feature:hover .feature-icon {
    background-color: rgba(212, 175, 55, 0.4);
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature-text {
    font-size: 14px;
    letter-spacing: 0.025em;
    font-weight: 500;
}

.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
}

.stat-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Why Marketing Section
   ============================================ */
.why-marketing-section {
    padding: 96px 0;
    background-color: var(--beige);
    position: relative;
    overflow: hidden;
}

.why-marketing-section .section-container {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 80px;
}

.why-marketing-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    z-index: 10;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.decorative-frame {
    position: absolute;
    z-index: -10;
}

.frame-1 {
    bottom: -32px;
    right: -32px;
    width: 256px;
    height: 256px;
    border: 32px solid var(--accent);
    opacity: 0.2;
}

.frame-2 {
    top: -32px;
    left: -32px;
    width: 192px;
    height: 192px;
    background-color: var(--primary);
    opacity: 0.05;
}

.why-marketing-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.why-marketing-content .section-title {
    font-size: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 16px;
}

.feature-item {
    display: flex;
    gap: 24px;
}

.feature-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-content {
    flex: 1;
}

.feature-title {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
    margin-bottom: 8px;
}

.feature-desc {
    color: var(--slate-500);
    font-size: 14px;
    line-height: 1.8;
}

.why-marketing-buttons {
    display: flex;
    gap: 20px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.btn-start-publishing,
.btn-live-chat {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-start-publishing {
    background-color: var(--secondary);
    color: var(--white);
    flex: 1;
    min-width: 180px;
}

.btn-start-publishing:hover {
    background-color: #053d2f;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(6, 78, 59, 0.3);
}

.btn-start-publishing:active {
    transform: translateY(0);
}

.btn-live-chat {
    background-color: var(--white);
    color: var(--primary);
    flex: 1;
    min-width: 180px;
    border: 2px solid rgba(26, 47, 75, 0.1);
}

.btn-live-chat:hover {
    background-color: var(--beige);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-live-chat:active {
    transform: translateY(0);
}

/* ============================================
   Strategy Section
   ============================================ */
.strategy-section {
    padding: 96px 0;
    background-color: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.strategy-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    transform: skewX(-12deg) translateX(50%);
    pointer-events: none;
}

.strategy-section .section-container {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 10;
}

.strategy-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.strategy-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.strategy-steps {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.strategy-step {
    position: relative;
    padding-left: 64px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 8px;
    padding-bottom: 8px;
    transition: border-color 0.3s ease;
}

.strategy-step:hover {
    border-color: var(--accent);
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary);
    border: 2px solid var(--accent);
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.strategy-step:hover .step-number {
    background-color: var(--accent);
    color: var(--primary);
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--white);
    transition: color 0.3s ease;
}

.strategy-step:hover .step-title {
    color: var(--accent);
}

.step-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
}

.strategy-image {
    position: relative;
}

.strategy-image .image-wrapper img {
    aspect-ratio: 16/10;
}

.floating-stat {
    position: absolute;
    bottom: -40px;
    left: -40px;
    background-color: var(--secondary);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: none;
}

.stat-big {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.stat-small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
    padding: 96px 0;
    background-color: var(--white);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.service-card {
    background-color: var(--beige);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    perspective: 1000px;
}

.service-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-8px);
}

.service-image {
    height: 192px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(26, 47, 75, 0.2);
    transition: background-color 0.3s ease;
}

.service-card:hover .service-image::after {
    background-color: transparent;
}

.service-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-icon-wrapper {
    padding: 12px;
    background-color: var(--white);
    width: fit-content;
    border-radius: 12px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    margin-top: -64px;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(212, 175, 55, 0.05);
}

.service-icon {
    width: 32px;
    height: 32px;
    color: var(--accent);
}

.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--secondary);
}

.service-desc {
    color: var(--slate-500);
    font-size: 14px;
    line-height: 1.8;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 16px;
}

.link-arrow {
    width: 16px;
    height: 16px;
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.why-choose-section {
    padding: 96px 0;
    background-color: var(--beige);
    position: relative;
}

.why-choose-section .section-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.why-choose-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.why-choose-content .section-title {
    font-size: 40px;
}

.advantages-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 16px;
}

.advantage-item {
    display: flex;
    gap: 24px;
}

.advantage-bar {
    width: 6px;
    height: 64px;
    background-color: rgba(212, 175, 55, 0.2);
    border-radius: 9999px;
    transition: background-color 0.3s ease;
}

.advantage-item:hover .advantage-bar {
    background-color: var(--accent);
}

.advantage-text {
    flex: 1;
}

.advantage-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.advantage-desc {
    color: var(--slate-500);
    font-size: 14px;
    line-height: 1.8;
    font-weight: 300;
}

.why-choose-image {
    width: 100%;
    position: relative;
}

.why-choose-image .image-wrapper img {
    aspect-ratio: 4/3;
}

.blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -10;
}

.circle-1 {
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background-color: rgba(6, 78, 59, 0.1);
}

.circle-2 {
    bottom: -40px;
    left: -40px;
    width: 240px;
    height: 240px;
    background-color: rgba(212, 175, 55, 0.1);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    padding: 96px 0;
    background-color: var(--primary);
    color: var(--white);
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    transition: background-color 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.testimonial-book {
    width: 128px;
    height: 192px;
    flex-shrink: 0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-book {
    transform: rotate(0deg);
}

.testimonial-book img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: var(--accent);
}

.star {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.testimonial-text {
    font-style: italic;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.2);
    object-fit: cover;
}

.author-name {
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 12px;
}

.author-role {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

/* ============================================
   Appointment Form Section
   ============================================ */
.appointment-section {
    padding: 96px 0;
    background-color: var(--white);
    position: relative;
}

.appointment-header {
    text-align: center;
    margin-bottom: 64px;
}

.appointment-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 16px;
}

.appointment-highlight {
    color: var(--secondary);
    font-weight: 700;
}

.appointment-subtitle {
    color: var(--slate-600);
    font-size: 18px;
    line-height: 1.6;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.appointment-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--beige);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

.form-group-full {
    grid-column: 1 / -1;
}

.form-input-appointment,
.form-textarea-appointment {
    width: 100%;
    background-color: var(--white);
    border: 1px solid rgba(26, 47, 75, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: var(--slate-900);
    transition: all 0.3s ease;
}

.form-input-appointment:focus,
.form-textarea-appointment:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-input-appointment::placeholder,
.form-textarea-appointment::placeholder {
    color: var(--slate-400);
}

.form-textarea-appointment {
    resize: vertical;
    min-height: 120px;
    font-family: 'Montserrat', sans-serif;
}

.form-submit-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.form-submit-appointment {
    background-color: var(--beige);
    color: var(--primary);
    border: 1px solid rgba(26, 47, 75, 0.1);
    border-radius: 12px;
    padding: 16px 48px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    font-family: 'Montserrat', sans-serif;
}

.form-submit-appointment:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.form-submit-appointment:active {
    transform: translateY(0);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('https://images.unsplash.com/photo-1513001900722-370f803f498d?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    transition: transform 3s ease;
}

.cta-section:hover .cta-background {
    transform: scale(1.1);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(6, 78, 59, 0.9);
    backdrop-filter: blur(4px);
    z-index: 1;
}

.cta-section .section-container {
    position: relative;
    z-index: 10;
    max-width: 896px;
}

.cta-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.cta-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    line-height: 1.8;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    padding-top: 24px;
}

.cta-btn-primary,
.cta-btn-secondary {
    padding: 20px 40px;
    border-radius: 9999px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.cta-btn-primary {
    background-color: var(--accent);
    color: var(--primary);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cta-btn-primary:hover {
    background-color: var(--white);
    transform: scale(1.05);
}

.cta-btn-primary:active {
    transform: scale(0.95);
}

.cta-btn-secondary {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    backdrop-filter: blur(12px);
}

.cta-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.cta-btn-secondary:active {
    transform: scale(0.95);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: #000000;
    padding-top: 60px;
    padding-bottom: 40px;
    position: relative;
}

/* Disclaimer Section */
.footer-disclaimer {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.disclaimer-heading {
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.disclaimer-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    line-height: 1.6;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin: 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-col {
    max-width: 100%;
}

.footer-logo-wrapper {
    margin-bottom: 0;
}

.footer-logo-link {
    display: inline-block;
    text-decoration: none;
    line-height: 0;
}

.footer-logo-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(1.1) contrast(1.05);
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.02);
}

.footer-heading {
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: capitalize;
    letter-spacing: 0.02em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.footer-links li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link-icon {
    color:  #154572;
    font-size: 8px;
    display: inline-block;
    line-height: 1;
    margin-right: 2px;
    font-weight: bold;
}

.footer-links a {
    color: #ffffff;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.footer-links a:hover {
    color:  #154572;
    padding-left: 3px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
}

.contact-icon {
    color:  #154572;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-text {
    color: #ffffff;
    font-weight: 400;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
}

.social-icon {
    color:  #154572;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

.social-icon:hover {
    color: #ffffff;
    background-color:  #154572;
    transform: scale(1.1);
}

.footer-bottom {
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-copyright {
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 0.02em;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
}

.footer-legal a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.footer-legal a:hover {
    color:  #154572;
}

.legal-separator {
    color: #ffffff;
    margin: 0 5px;
}

/* ============================================
   Responsive Design
   ============================================ */

/* Tablet and up */
@media (min-width: 640px) {
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        gap: 32px;
    }

    .cta-buttons {
        flex-direction: row;
    }

    .floating-stat {
        display: block;
    }
}

@media (min-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }

    .why-marketing-section .section-container {
        grid-template-columns: 1fr 1fr;
    }

    .strategy-section .section-container {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-section .section-container {
        flex-direction: row;
    }

    .why-choose-content {
        width: 50%;
    }

    .why-choose-image {
        width: 50%;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card {
        flex-direction: row;
    }

    .appointment-form-wrapper {
        padding: 56px 64px;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .section-title {
        font-size: 64px;
    }

    .hero-title {
        font-size: 72px;
    }

    .why-marketing-content .section-title,
    .why-choose-content .section-title {
        font-size: 48px;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }

    .footer-logo-col {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Mobile adjustments */
@media (max-width: 1023px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 120px;
        left: 0;
        width: 100%;
        background-color: var(--beige);
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 0;
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1051;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-link {
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid rgba(26, 47, 75, 0.1);
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        border: none;
        border-left: 3px solid var(--accent);
        margin: 8px 0 0 16px;
        padding: 0;
        background-color: transparent;
        min-width: auto;
        width: 100%;
        pointer-events: auto;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-item {
        padding: 12px 16px;
        border-left: none;
        border-bottom: 1px solid rgba(26, 47, 75, 0.1);
    }

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

    .dropdown-item:hover {
        padding-left: 20px;
        background-color: transparent;
    }

    .btn-nav-publish {
        display: none;
    }

    .nav-phone span {
        font-size: 13px;
    }
}

@media (max-width: 639px) {
    .nav-container {
        padding: 0 16px;
    }

    .nav-phone span {
        display: none;
    }

    .nav-phone {
        padding: 8px;
        background-color: var(--secondary);
        border-radius: 50%;
        color: var(--white);
        width: 36px;
        height: 36px;
        justify-content: center;
    }

    .nav-phone:hover {
        color: var(--white);
        background-color: #053d2f;
    }

    .nav-logo-img {
        height: 50px;
    }

    .hero-container {
        padding: 40px 16px;
    }

    .hero-form {
        padding: 24px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-container {
        padding: 0 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .appointment-title {
        font-size: 32px;
    }

    .appointment-subtitle {
        font-size: 16px;
    }

    .appointment-form-wrapper {
        padding: 32px 24px;
    }

    .why-marketing-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .btn-start-publishing,
    .btn-live-chat {
        width: 100%;
        min-width: unset;
    }

    .why-marketing-section,
    .strategy-section,
    .services-section,
    .why-choose-section,
    .testimonials-section,
    .appointment-section,
    .cta-section {
        padding: 64px 0;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-title {
        font-size: 32px;
    }

    .cta-title {
        font-size: 32px;
    }

    .appointment-title {
        font-size: 28px;
    }

    .why-marketing-buttons {
        flex-direction: column;
    }

    .btn-start-publishing,
    .btn-live-chat {
        width: 100%;
    }
}

/* ============================================
   About Us Page Styles
   ============================================ */
.about-hero-section {
    position: relative;
    min-height: 60vh;
    padding-top: 120px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 47, 75, 0.9), rgba(26, 47, 75, 0.7));
}

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

.about-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    line-height: 1.8;
    font-weight: 300;
}

.about-mission-section {
    padding: 96px 0;
    background-color: var(--beige);
}

.about-mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.about-mission-image .image-wrapper img {
    aspect-ratio: 4/3;
    border-radius: 16px;
}

.about-values-section {
    padding: 96px 0;
    background-color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 60px;
}

.value-card {
    background-color: var(--beige);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 47, 75, 0.1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.value-icon svg {
    width: 32px;
    height: 32px;
}

.value-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.value-desc {
    color: var(--slate-600);
    font-size: 16px;
    line-height: 1.8;
}

.about-stats-section {
    padding: 80px 0;
    background-color: var(--primary);
    color: var(--white);
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.8);
}

.about-team-section {
    padding: 96px 0;
    background-color: var(--beige);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 60px;
}

.team-member {
    text-align: center;
    background-color: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.team-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.team-role {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
    margin-bottom: 16px;
}

.team-bio {
    color: var(--slate-600);
    font-size: 16px;
    line-height: 1.8;
}

/* ============================================
   Contact Us Page Styles
   ============================================ */
.contact-hero-section {
    padding: 120px 0 80px;
    background-color: var(--beige);
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 24px;
}

.contact-hero-description {
    color: var(--slate-600);
    font-size: 20px;
    line-height: 1.8;
    font-weight: 300;
}

.contact-main-section {
    padding: 96px 0;
    background-color: var(--white);
}

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

.contact-form-wrapper {
    background-color: var(--beige);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-form-subtitle {
    color: var(--slate-600);
    font-size: 16px;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-form-input,
.contact-form-textarea,
.contact-form-select {
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(26, 47, 75, 0.1);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: var(--slate-900);
    background-color: var(--white);
    transition: all 0.3s ease;
}

.contact-form-input:focus,
.contact-form-textarea:focus,
.contact-form-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.contact-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231A2F4B'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.contact-form-submit {
    background-color: var(--primary);
    color: var(--white);
    padding: 18px 48px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-form-submit:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-form-submit:active {
    transform: translateY(0);
}

.contact-info-wrapper {
    position: sticky;
    top: 100px;
}

.contact-info-card {
    background-color: var(--beige);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-info-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-info-desc {
    color: var(--slate-600);
    font-size: 16px;
    margin-bottom: 40px;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.contact-info-value {
    color: var(--slate-600);
    font-size: 16px;
    line-height: 1.6;
    text-decoration: none;
    display: block;
}

.contact-info-value:hover {
    color: var(--secondary);
}

.contact-social {
    padding-top: 32px;
    border-top: 1px solid rgba(26, 47, 75, 0.1);
}

.contact-social-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-social-link {
    padding: 8px 16px;
    background-color: var(--white);
    color: var(--primary);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 47, 75, 0.1);
}

.contact-social-link:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.contact-map-section {
    padding: 0;
    background-color: var(--beige);
}

.contact-map-wrapper {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Styles for About & Contact Pages */
@media (min-width: 768px) {
    .about-mission-grid {
        grid-template-columns: 1fr 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1.2fr 1fr;
    }

    .contact-form-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .about-hero-title,
    .contact-hero-title {
        font-size: 36px;
    }

    .about-hero-description,
    .contact-hero-description {
        font-size: 16px;
    }

    .contact-form-wrapper,
    .contact-info-card {
        padding: 32px 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

