/* Custom Font Declarations */
@font-face {
    font-family: 'IvyPresto Headline';
    src: url('../../typography/Thin IvyPresto.otf.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'IvyPresto Headline';
    src: url('../../typography/Regular IvyPresto.otf.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'IvyPresto Headline';
    src: url('../../typography/Semi Regular IvyPresto.otf.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'IvyPresto Headline';
    src: url('../../typography/Bold IvyPresto.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'IvyPresto Headline';
    src: url('../../typography/italic Regular IvyPresto.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'IvyPresto Headline';
    src: url('../../typography/italic bold IvyPresto.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    overflow-x: hidden;
    position: relative;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 360px;
    z-index: 1000;
    animation: slideUp 0.5s ease-out;
    font-family: Arial, sans-serif;
}

/* Cookie Banner - 1512px screens */

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

.cookie-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #999;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
    line-height: 1;
}

.cookie-close:hover {
    color: #333;
}

.cookie-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.cookie-icon {
    flex-shrink: 0;
}

.cookie-title {
    font-size: 14px;
    line-height: 1.4;
    color: #000;
    margin: 0;
    font-family: Arial, sans-serif;
}

.cookie-title strong {
    font-weight: 600;
}

.cookie-text {
    font-size: 12px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 16px;
    font-family: Arial, sans-serif;
}

.cookie-link {
    color: #C80180;
    text-decoration: underline;
}

.cookie-link:hover {
    color: #A00166;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cookie-buttons-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.cookie-btn {
    padding: 10px 16px;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: Arial, sans-serif;
    text-align: center;
}

.accept-btn {
    background: #C80180;
    color: white;
    width: 100%;
}

.accept-btn:hover {
    background: #A00166;
}

.customize-btn,
.reject-btn {
    background: white;
    color: #333;
    border: 1px solid #ddd;
}

.customize-btn:hover,
.reject-btn:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 900;
    padding: 20px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo svg {
    width: 40px;
    height: auto;
}

.logo-text {
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: Arial, sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
    font-family: Arial, sans-serif;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -16px;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.nav-link:not(.active):hover {
    opacity: 0.8;
}

.nav-link:not(.active):hover::after {
    width: 100%;
}

.nav-link.active {
    opacity: 0.8;
    font-weight: 600;
}

.nav-link.active::after {
    width: 63px !important;
    left: 50%;
    transform: translateX(-50%);
    transition: none;
}

.contact-btn {
    padding: 12px 28px;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: Arial, sans-serif;
}

.contact-btn:hover {
    background: white;
    color: #2D1B69;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: white;
    transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: white;
    z-index: 1000;
    transition: right 0.3s ease-in-out;
    padding: 60px 40px;
}

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

.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 36px;
    cursor: pointer;
    color: #333;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-link {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    font-family: Arial, sans-serif;
}

.mobile-link:hover {
    color: #2D1B69;
}

.mobile-contact-btn {
    padding: 14px 32px;
    background: transparent;
    color: #333;
    border: 2px solid #333;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
    font-family: Arial, sans-serif;
}

.mobile-contact-btn:hover {
    background: #2D1B69;
    color: white;
    border-color: #2D1B69;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(131.32deg, #152257 0%, #C80180 154.84%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
    animation: slideUpFade 1s ease-out forwards;
    opacity: 0;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(calc(-50% + 60px));
    }
    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

.hero-title {
    font-family: 'IvyPresto Headline', 'Georgia', serif;
    font-size: 170px;
    font-weight: 550;
    font-style: normal;
    color: #FFFFFF;
    line-height: 163px;
    letter-spacing: 0%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.title-line {
    display: block;
    white-space: nowrap;
    flex-shrink: 0;
    flex: 0 0 auto;
}

.title-line:first-child {
    text-align: right;
    margin-left: -225px;
    margin-right: 0;
    padding-right: 63px;
    margin-bottom: 200px;
}

.title-line:last-child {
    text-align: left;
    margin-right: 40px;
    margin-left: 0;
    padding-left: 20px;
}

.hero-subtitle {
    position: absolute;
    bottom: 60px;
    left: 40px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    max-width: 350px;
    font-family: Arial, sans-serif;
    z-index: 3;
    animation: slideUpFadeSubtitle 1.2s ease-out 0.3s forwards;
    opacity: 0;
    font-family: 'Poppins', sans-serif;
}

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

.hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 90vh;
    padding-top: 80px;
    animation: slideUpFadeImage 1.4s ease-out 0.2s forwards;
    opacity: 0;
}

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

.hero-image img {
    width: auto;
    height: 100%;
    max-height: 90vh;
    object-fit: contain;
    object-position: bottom;
}

/* 1440px Screens - Move title closer to image */

/* Tablet Styles - 768px to 1024px (CENTER-ALIGNED) */

/* Mobile Styles - Up to 767px (LEFT-ALIGNED) */

/* Small Mobile Styles */

/* Landscape Mobile */

/* 430px Screens - Centered layout with larger image */


/* About Section */
.about-section {
    background: #E8E4DF;
    padding: 100px 40px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
}

.about-title {
    font-family: 'IvyPresto Headline', 'Georgia', serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.01em;
    color: #101010;
    margin-bottom: 40px;
    text-align: center;
}

.about-title-highlight {
    color: #C80180;
    font-style: italic;
}

.about-subtitle {
    font-family: 'IvyPresto Headline', 'Georgia', serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0.01em;
    color: #101010;
    margin-bottom: 30px;
    text-align: center;
}

.about-content {
    margin-bottom: 50px;
}

.about-content p {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.01em;
    color: #000;
    margin-bottom: 20px;
    text-align: center;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-content strong {
    font-weight: 600;
    font-style: italic;
}

.about-title .mobile-br {
    display: none;
}

.lets-chat-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #C80180;
    color: white;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.lets-chat-btn:hover {
    background: #A00166;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 1, 128, 0.3);
}

.lets-chat-btn svg {
    width: 20px;
    height: 20px;
}

/* About Section - Tablet */

/* About Section - Mobile */

/* About Section - Small Mobile */

/* Track Record Section */
.track-record-section {
    padding: 100px 40px;
    background-color: #fff;
}

.track-record-container {
    max-width: 1400px;
    margin: 0 auto;
}

.track-record-title {
    font-family: 'IvyPresto Headline', 'Georgia', serif;
    font-size: 56px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 100px;
    line-height: 1.2;
    color: #000;
}

.track-record-highlight {
    color: #C80180;
    font-style: italic;
}

.track-record-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 600px;
}

.track-record-item-reverse {
    direction: rtl;
}

.track-record-item-reverse > * {
    direction: ltr;
}

.track-record-image {
    width: 100%;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
}

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

.track-record-content {
    background-color: #E8E4DF;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.track-record-icon {
    margin-bottom: 30px;
}

.track-record-icon svg {
    width: 56px;
    height: 56px;
}

.track-record-item-title {
    font-family: 'IvyPresto Headline', 'Georgia', serif;
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.2;
    color: #000;
}

.track-record-item-title-highlight {
    color: #C80180;
    font-style: italic;
}

.track-record-item-text {
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #000;
    max-width: 400px;
}

.track-record-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #C80180;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 40px auto;
    display: flex;
    width: fit-content;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
}

.track-record-cta:hover {
    background-color: #a00166;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 1, 128, 0.3);
}

.track-record-cta svg {
    width: 20px;
    height: 20px;
}

/* Track Record - Tablet */

/* Track Record - Mobile */

/* Track Record - Small Mobile */

/* Exilara Section */
.exilara-section {
    background-color: #E8E4DF;
    padding: 100px 40px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exilara-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.exilara-content {
    padding-right: 40px;
}

.exilara-title {
    font-family: 'IvyPresto Headline', 'Georgia', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #000;
}

.exilara-brand {
    color: #C80180;
    font-style: italic;
}

.exilara-title-regular {
    font-style: normal;
    color: #000;
}

.exilara-text {
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #000;
    margin-bottom: 20px;
}

.exilara-text:last-of-type {
    margin-bottom: 40px;
}

.exilara-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #C80180;
    color: white;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
}

.exilara-cta:hover {
    background-color: #a00166;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 1, 128, 0.3);
}

.exilara-cta svg {
    width: 20px;
    height: 20px;
}

.exilara-image {
    width: 100%;
    height: 100%;
}

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

/* Exilara Section - Tablet */

/* Exilara Section - Mobile */

/* Exilara Section - Small Mobile */

/* Testimonials Section */
.testimonials-section {
    background-color: #fff;
    padding: 100px 40px;
    overflow: hidden;
}

.testimonials-container {
    /* max-width: 1400px; */
    margin: 0 auto;
    text-align: center;
}

.testimonials-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonials-icon svg {
    width: 48px;
    height: 48px;
}

.testimonials-title {
    font-family: 'IvyPresto Headline', 'Georgia', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 60px;
    color: #000;
}

.testimonials-highlight {
    color: #C80180;
    font-style: italic;
}

.testimonials-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    will-change: scroll-position;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 350px;
    min-width: 350px;
    max-width: 350px;
    background: #fff;
    border: 1px solid #E8E4DF;
    border-radius: 8px;
    padding: 40px 30px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-quote-icon {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.testimonial-quote-icon svg {
    width: 40px;
    height: 40px;
}

.testimonial-text {
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #000;
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-author {
    text-align: left;
    border-top: 1px solid #E8E4DF;
    padding-top: 20px;
}

.author-name {
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.author-role {
    font-family: Arial, sans-serif;
    font-size: 12px;
    color: #666;
}

/* Testimonials Section - Tablet */

/* Testimonials Section - Mobile */

/* Testimonials Section - Small Mobile */

/* Home Page Navbar Overrides - Transparent navbar with white elements */
.navbar-new {
    background-color: transparent;
    box-shadow: none;
}

.navbar-new__logo img {
    transition: opacity 0.3s ease;
}

.navbar-new__menu-item {
    color: #FFFFFF;
}

.navbar-new__menu-item.active {
    border-bottom-color: #FFFFFF;
}

.navbar-new__cta {
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.navbar-new__dropdown-toggle {
    color: #FFFFFF;
}

.navbar-new__dropdown-toggle.active {
    border-bottom-color: #FFFFFF;
}

.navbar-new__dropdown-toggle svg path {
    fill: #FFFFFF;
}

/* Navbar Scrolled State - White background with dark elements */
.navbar-new.navbar-scrolled {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar-new.navbar-scrolled .navbar-new__menu-item {
    color: #101010;
    transition: color 0.3s ease;
}

.navbar-new.navbar-scrolled .navbar-new__menu-item.active {
    border-bottom-color: #101010;
}

.navbar-new.navbar-scrolled .navbar-new__menu-item:hover {
    color: #C80180;
}

.navbar-new.navbar-scrolled .navbar-new__cta {
    color: #101010;
    border-color: #101010;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.navbar-new.navbar-scrolled .navbar-new__cta:hover {
    background-color: #C80180;
    border-color: #C80180;
    color: #ffffff;
}

.navbar-new.navbar-scrolled .navbar-new__dropdown-toggle {
    color: #101010;
    transition: color 0.3s ease;
}

.navbar-new.navbar-scrolled .navbar-new__dropdown-toggle.active {
    border-bottom-color: #101010;
}

.navbar-new.navbar-scrolled .navbar-new__dropdown-toggle svg path {
    fill: #101010;
    transition: fill 0.3s ease;
}

/* Hamburger color - white when not scrolled, dark when scrolled */
.navbar-new__hamburger span {
    background-color: #FFFFFF;
    transition: background-color 0.3s ease;
}

.navbar-new.navbar-scrolled .navbar-new__hamburger span {
    background-color: #101010;
    transition: background-color 0.3s ease;
}


/* ============================================
   RESPONSIVE DESIGN - MEDIA QUERIES
   ============================================ */

/* Large Desktop Screens (1440px - 1600px) */

@media screen and (min-width: 2560px) {
    .cookie-consent {
        max-width: 520px;
    }

    .title-line:first-child {
        text-align: right;
        margin-left: -77px;
        margin-right: 0;
        padding-right: 63px;
        margin-bottom: 200px;
    }

    .title-line:last-child {
        text-align: left;
        margin-right: 149px;
        margin-left: 0;
        padding-left: 20px;
        margin-bottom: 63px;
    }
}

@media screen and (min-width: 1440px) and (max-width: 1600px) {
    .cookie-consent {
        max-width: 520px;
    }
}

/* Desktop Specific (1440px - 1599px) */
@media (min-width: 1440px) and (max-width: 1599px) {
    .hero-image {
        padding-left: 80px;
    }

    .hero-content {
        top: 58%;
    }
    
    .hero-title {
        font-family: 'IvyPresto Headline', 'Georgia', serif;
        font-size: 170px;
        font-weight: 600;
        font-style: normal;
        color: #FFFFFF;
        line-height: 163px;
        letter-spacing: 0%;
        position: relative;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        height: 400px;
    }
    
    .title-line {
        display: block;
        white-space: nowrap;
        position: absolute;
    }
    
    .title-line:first-child {
        top: -80px;
        right: 48.5%;
        text-align: right;
        transform: translateX(-63px);
        font-size: 140px;
    }
    
    .title-line:last-child {
        bottom: 216px;
        left: 59.5%;
        text-align: left;
        transform: translateX(20px);
        font-size: 140px;
    }
}

/* Desktop Small (1024px - 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
    .hero-title {
        font-size: 100px;
        font-weight: 600;
        line-height: 163px;
    }
    
    .hero-image {
        height: 90vh;
        padding-left: 120px;
        padding-top: 80px;
    }
    
    .hero-image img {
        max-height: 90vh;
    }

    .title-line:first-child {
        text-align: right;
        margin-left: 45px;
        margin-right: 0;
        padding-right: 63px;
        margin-bottom: 226px;
    }

    .title-line:last-child {
        text-align: left;
        margin-right: 72px;
        margin-left: 0;
        padding-left: 20px;
        margin-bottom: 65px;
    }

    .hero-subtitle {
        max-width: 281px;
    }
}

/* Tablet Screens (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .nav-container {
        padding: 0 30px;
    }

    .nav-menu {
        gap: 25px;
    }

    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    .hero-container {
        padding: 80px 40px 40px;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        min-height: 100vh;
    }

    .hero-content {
        position: static;
        transform: none;
        text-align: center;
        order: 1;
        margin-bottom: 0;
        margin-top: 80px;
        width: 100%;
    }

    .hero-title {
        font-size: clamp(70px, 9vw, 100px);
        line-height: 1.1;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin-bottom: 0;
    }

    .title-line:first-child {
        text-align: center;
        margin-left: 0;
        padding-right: 0;
        margin-bottom: 0;
    }

    .title-line:last-child {
        text-align: center;
        margin-right: 0;
        margin-left: 0;
        padding-left: 0;
    }

    .hero-subtitle {
        position: static;
        left: auto;
        transform: none;
        text-align: center;
        max-width: 600px;
        margin: -30px auto 0;
        font-size: 16px;
        line-height: 1.6;
        order: 2;
    }
    
    .hero-image {
        order: 3;
        height: auto;
        max-height: 65vh;
        width: 100%;
        display: flex;
        justify-content: center;
        padding-top: 0;
        margin-bottom: -39px;
    }
    
    .hero-image img {
        max-width: 100%;
        width: auto;
        height: auto;
        max-height: 65vh;
    }

    .cookie-consent {
        left: 20px;
        bottom: 20px;
        max-width: 350px;
    }
}

/* iPad Pro 12.9" Portrait (1024 x 1366) */
@media (width: 1024px) and (min-height: 1350px) and (max-height: 1380px) and (orientation: portrait) {
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    .hero-container {
        padding: 140px 40px 0;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
        min-height: 100vh;
    }

    .hero-content {
        position: static;
        transform: none;
        text-align: center;
        order: 1;
        margin-bottom: 0;
        margin-top: 100px;
        width: 100%;
    }

    .hero-title {
        font-weight: 600;
        line-height: 1.1;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin-bottom: 0;
        font-size: 100px;
    }

    .title-line:first-child {
        text-align: center;
        margin-left: 0;
        padding-right: 0;
        margin-bottom: 0;
    }

    .title-line:last-child {
        text-align: center;
        margin-right: 0;
        margin-left: 0;
        padding-left: 0;
    }

    .hero-subtitle {
        position: static;
        left: auto;
        transform: none;
        text-align: center;
        max-width: 600px;
        margin: -180px auto 0;
        font-size: 26px;
        line-height: 1.6;
        order: 2;
    }
    
    .hero-image {
        order: 3;
        height: auto;
        max-height: 75vh;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        padding-top: 0;
        padding-left: 0;
        margin-top: auto;
    }
    
    .hero-image img {
        max-width: 100%;
        width: auto;
        height: auto;
        max-height: 75vh;
    }
}

/* Mobile Screens (up to 767px) */
@media (max-width: 767px) {
    .nav-menu,
    .contact-btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-container {
        padding: 0 24px;
    }

    .hero {
        min-height: auto;
        height: auto;
        display: block;
    }

    .hero-container {
        padding: 100px 24px 40px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        min-height: auto;
        height: auto;
        max-width: 100%;
    }

    .hero-content {
        position: relative;
        transform: none;
        order: 1;
        text-align: left;
        margin-bottom: 0;
        width: 100%;
    }

    .hero-title {
        font-size: clamp(48px, 12vw, 72px);
        line-height: 1.1;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 0;
        margin-bottom: 24px;
    }

    .title-line:first-child {
        text-align: left;
        margin-left: 0;
        padding-right: 0;
        margin-bottom: 0;
    }

    .title-line:last-child {
        text-align: left;
        margin-right: 0;
        margin-left: 0;
        padding-left: 0;
    }

    .hero-subtitle {
        position: relative;
        font-size: 15px;
        max-width: 100%;
        text-align: left;
        left: 0;
        bottom: 0;
        transform: none;
        margin-bottom: 40px;
        line-height: 1.6;
    }

    .hero-image {
        order: 2;
        height: 50vh;
        max-height: 50vh;
        width: 100%;
        display: flex;
        justify-content: center;
        padding-top: 0;
        margin-top: 40px;
    }

    .hero-image img {
        max-width: 100%;
        width: auto;
        height: 100%;
        max-height: 50vh;
        object-fit: contain;
    }

    .cookie-consent {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: calc(100% - 30px);
    }

    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
    }

    .hero-container {
        min-height: auto;
        padding: 80px 20px 30px;
        flex-direction: row;
        gap: 30px;
    }
    
    .hero-content {
        flex: 1;
        text-align: left;
        margin-bottom: 0;
    }
    
    .hero-title {
        font-size: clamp(36px, 6vw, 48px);
        align-items: flex-start;
    }
    
    .title-line:first-child,
    .title-line:last-child {
        text-align: left;
    }
    
    .hero-subtitle {
        text-align: left;
        font-size: 13px;
    }
    
    .hero-image {
        flex: 1;
        max-height: 70vh;
    }
    
    .hero-image img {
        max-height: 70vh;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 20px;
        min-height: auto;
    }

    .about-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .about-title br:not(.mobile-br) {
        display: none;
    }

    .about-subtitle {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .about-content {
        margin-bottom: 40px;
    }

    .about-content p {
        font-size: 14px;
        text-align: left;
    }

    .lets-chat-btn {
        padding: 14px 28px;
        font-size: 13px;
    }

    .lets-chat-btn svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 768px) {
    .track-record-section {
        padding: 60px 20px;
    }
    
    .track-record-title {
        font-size: 32px;
        margin-bottom: 50px;
    }
    
    .track-record-item,
    .track-record-item-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 0;
        min-height: auto;
    }
    
    .track-record-image {
        min-height: 350px;
        height: 350px;
    }
    
    .track-record-content {
        padding: 50px 30px;
    }
    
    .track-record-icon svg {
        width: 48px;
        height: 48px;
    }
    
    .track-record-item-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .track-record-item-text {
        font-size: 14px;
    }
    
    .track-record-cta {
        padding: 14px 28px;
        font-size: 13px;
        margin: 30px auto;
    }
}

@media (max-width: 768px) {
    .exilara-section {
        padding: 60px 20px;
    }
    
    .exilara-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .exilara-content {
        padding-right: 0;
    }
    
    .exilara-title {
        font-size: 32px;
        margin-bottom: 25px;
    }
    
    .exilara-text {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .exilara-text:last-of-type {
        margin-bottom: 30px;
    }
    
    .exilara-cta {
        padding: 14px 28px;
        font-size: 13px;
    }
    
    .exilara-cta svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 20px;
    }
    
    .testimonials-icon {
        margin-bottom: 20px;
    }
    
    .testimonials-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .testimonials-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .testimonials-slider {
        gap: 20px;
        padding: 15px 0 30px;
    }
    
    .testimonial-card {
        flex: 0 0 85%;
        min-width: 280px;
        padding: 35px 25px;
    }
    
    .testimonial-quote-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .testimonial-text {
        font-size: 13px;
        margin-bottom: 25px;
    }
    
    .author-name {
        font-size: 13px;
    }
    
    .author-role {
        font-size: 11px;
    }
}

/* Small Mobile Screens (up to 480px) */
@media (max-width: 480px) {
    .logo-text {
        font-size: 11px;
    }

    .hero-container {
        padding: 80px 15px 0px;
    }

    .hero-title {
        font-size: clamp(40px, 11vw, 56px);
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .hero-image {
        max-height: 50vh;
    }
    
    .hero-image img {
        max-height: 50vh;
    }

    .mobile-menu {
        max-width: 100%;
        padding: 60px 30px;
    }

    .cookie-consent {
        padding: 20px;
    }

    .cookie-content p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 50px 15px;
    }

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

    .about-subtitle {
        font-size: 18px;
    }

    .about-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .track-record-section {
        padding: 50px 15px;
    }
    
    .track-record-title {
        font-size: 28px;
    }
    
    .track-record-image {
        min-height: 300px;
        height: 300px;
    }
    
    .track-record-content {
        padding: 40px 25px;
    }
    
    .track-record-item-title {
        font-size: 24px;
    }
    
    .track-record-item-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .exilara-section {
        padding: 50px 15px;
    }
    
    .exilara-container {
        gap: 30px;
    }
    
    .exilara-title {
        font-size: 28px;
    }
    
    .exilara-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 50px 15px;
    }
    
    .testimonials-title {
        font-size: 28px;
    }
    
    .testimonial-card {
        flex: 0 0 90%;
        min-width: 260px;
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 13px;
    }
}

/* Specific Screen Size (440px) */
@media (max-width: 440px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
    }

    .hero-container {
        height: 100vh;
        min-height: 100vh;
        padding-top: 80px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        position: relative;
        transform: none;
        order: 1;
        top: 0px;
    }

    .hero-title {
        font-size: 70px;
        align-items: center;
        justify-content: center;
    }

    .title-line:first-child,
    .title-line:last-child {
        text-align: center;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .hero-subtitle {
        position: relative;
        bottom: -200px;
        left: auto;
        text-align: center;
        margin: 20px auto 0;
        padding: 0;
        max-width: 100%;
        font-size: 16px;
    }

    .hero-image {
        order: 2;
        margin-top: 40px;
        height: 85vh;
        max-height: 85vh;
        width: 139%;
    }

    .hero-image img {
        width: 100%;
        height: 100%;
        max-height: 85vh;
        object-fit: contain;
    }
}

/* Specific Screen Size (430px) */
@media (max-width: 430px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
    }

    .hero-container {
        height: 100vh;
        min-height: 100vh;
        padding-top: 80px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        position: relative;
        transform: none;
        order: 1;
        top: 0px;
    }

    .hero-title {
        font-size: 70px;
        align-items: center;
        justify-content: center;
    }

    .title-line:first-child,
    .title-line:last-child {
        text-align: center;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .hero-subtitle {
        position: relative;
        bottom: -200px;
        left: auto;
        text-align: center;
        margin: 20px auto 0;
        padding: 0;
        max-width: 100%;
        font-size: 16px;
    }

    .hero-image {
        order: 2;
        margin-top: 40px;
        height: 85vh;
        max-height: 85vh;
        width: 139%;
    }

    .hero-image img {
        width: 100%;
        height: 100%;
        max-height: 85vh;
        object-fit: contain;
    }
}

/* About Section - Three Line Title for Specific Mobile Widths */
@media (width: 320px), (width: 375px), (width: 390px), (width: 412px), (width: 414px), (width: 425px), (width: 430px) {
    .about-title .mobile-br {
        display: inline !important;
    }
}
