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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 45vh;
    min-height: 350px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hero-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 32px 48px;
}

.logo {
    margin-top: -30mm;
}

.logo img {
    height: 600px;
    width: auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.contact-info a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
}

.contact-info a:hover {
    opacity: 0.8;
}

.hero-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
}

.hero-center {
    margin-top: -40mm;
}

.hero-center h1 {
    color: #fff;
    font-size: clamp(21px, 3.6vw, 43px);
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
}

/* VIDEO SECTION */
.video-section {
    background: #fff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.video-section::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 120mm;
    background: linear-gradient(to left, rgba(202, 218, 218, 0.6) 0%, rgba(202, 218, 218, 0.6) 100%);
    clip-path: polygon(100% 0, 100% 100%, 0 50%);
    pointer-events: none;
}

.video-row {
    display: flex;
    gap: 20mm;
    align-items: center;
}

.video-col {
    flex: 0 0 66%;
    max-width: 800px;
    transform: translateX(-90mm);
}

.video-wrapper {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    object-fit: cover;
}

.video-wrapper video::-webkit-media-controls-play-button {
    display: none !important;
}

.video-caption {
    font-size: 14px;
    color: #666;
    margin-top: 12px;
    text-align: left;
}

.video-wrapper .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.2s;
    pointer-events: none;
}

.video-wrapper .play-button svg {
    width: 28px;
    height: 28px;
    fill: #fff;
    margin-left: 3px;
}

.video-wrapper:hover .play-button {
    background: rgba(255, 0, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-wrapper.playing .play-button {
    display: none;
}

.text-col {
    flex: 0 0 580px;
    transform: translateX(-80mm);
}

.text-col p {
    font-size: 20px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 16px;
}

.text-col strong {
    font-weight: 700;
    color: #1a1a1a;
}

.btn-primary {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
}

/* SERVICES SECTION */
.services {
    display: flex;
    width: 100%;
    height: 350px;
}

.service-col {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.service-col:hover .service-bg {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.service-col h3 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* OUR STORY SECTION */
.our-story {
    background: #fff;
    padding: 40px 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: 100%;
}

.story-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    width: fit-content;
    margin: 0 auto;
    transform: translateX(-40mm);
}

.profile-col {
    flex: 0 0 265px;
    transform: translateX(-35mm);
}

.story-content .text-col {
    transform: none;
}

.profile-card {
    text-align: center;
    transform: translateX(-15mm);
}

.profile-card img {
    width: 265px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.profile-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.profile-card .license {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.story-content .text-col {
    flex: 0 0 750px;
    text-align: center;
    transform: translateY(-10mm);
}

.story-content .text-col p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
    text-align: center;
}

.story-content .text-col strong {
    font-weight: 700;
    color: #1a1a1a;
}

/* FOOTER */
.footer {
    background: #cadada;
    padding: 80px 0;
    color: #1a1a1a;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-left {
    flex: 1;
}

.footer-brand-row {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.footer-logo-col img {
    height: 300px;
    width: auto;
}

.footer-contact-col {
    padding-top: 20px;
}

.footer-contact-col .tagline {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    display: block;
    margin-bottom: 24px;
}

.footer-contact-col p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 12px;
}

.footer-contact-col a {
    color: #1a1a1a;
    font-weight: 500;
    transition: opacity 0.3s;
}

.footer-contact-col a:hover {
    opacity: 0.7;
}

.footer-contact-col .social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.footer-contact-col .social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    border-radius: 50%;
    transition: background 0.3s, transform 0.2s;
}

.footer-contact-col .social-links a:hover {
    background: #333;
    transform: translateY(-2px);
}

.footer-contact-col .social-links svg {
    width: 20px;
    height: 20px;
    fill: #cadada;
}

.footer-right {
    flex: 0 0 400px;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(0,0,0,0.15);
    background: rgba(255,255,255,0.5);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #1a1a1a;
    transition: border-color 0.3s, background 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1a1a1a;
    background: rgba(255,255,255,0.8);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666;
}

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

.btn-submit {
    background: #1a1a1a;
    color: #fff;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    align-self: flex-start;
}

.btn-submit:hover {
    background: #333;
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE - MOBILE FIRST APPROACH
   ============================================ */

/* Force mobile styles - max priority */
@media screen and (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .hero {
        height: 350px !important;
        min-height: 350px !important;
        max-height: 350px !important;
    }
    
    .hero-slider,
    .slide {
        height: 350px !important;
        min-height: 350px !important;
    }
    
    .logo img {
        height: 140px !important;
        max-height: 140px !important;
        width: auto !important;
    }
    
    .hero-center h1 {
        font-size: 20px !important;
    }
}

/* Tablet (768px - 992px) */
@media screen and (max-width: 992px) {
    .video-row {
        flex-direction: column;
    }
    
    .video-col {
        flex: none;
        max-width: 100%;
        width: 100%;
        transform: none;
    }
    
    .story-content {
        flex-direction: column;
        gap: 40px;
        transform: none;
    }
    
    .profile-col {
        flex: none;
        width: 100%;
        transform: none;
    }
    
    .profile-card {
        transform: none;
    }
    
    .footer-row {
        flex-direction: column;
    }
    
    .footer-right {
        flex: none;
        width: 100%;
    }
    
    .text-col {
        flex: none;
        max-width: 100%;
        transform: none;
    }
}

/* Mobile Large (480px - 768px) */
@media screen and (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    /* Hero - Mobile */
    .hero {
        height: 400px;
        min-height: 400px;
    }
    
    .hero-slider,
    .slide {
        height: 400px;
    }
    
    .hero-top {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 20px;
    }
    
    .logo {
        margin-top: -20px;
    }
    
    .logo img {
        height: 242px;
    }
    
    .hero-center {
        margin-top: -20mm;
        padding-top: 0;
    }
    
    .hero-center h1 {
        font-size: 20px;
        margin-top: -10mm;
    }
    
    .contact-info {
        align-items: center;
        margin-top: 0;
    }
    
    .contact-info a {
        font-size: 13px;
    }
    
    /* Services - Mobile */
    .services {
        flex-wrap: wrap;
        height: auto;
    }
    
    .service-col {
        flex: 0 0 50%;
        height: 200px;
    }
    
    .service-col h3 {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    /* About - Mobile */
    .our-story {
        padding: 20px 0;
    }
    
    .section-title {
        margin-bottom: 60px;
    }
    
    .story-content {
        padding: 0 20px;
        margin-top: 3mm;
    }
    
    .profile-col,
    .profile-card,
    .profile-card img,
    .profile-card h4,
    .profile-card .license {
        display: none !important;
    }
    
    .story-content .text-col {
        flex: none;
        max-width: 100%;
        transform: none;
        margin-top: -40px;
    }
    
    .story-content .text-col p {
        font-size: 14px;
        line-height: 1.7;
    }
    
    /* Video - Mobile */
    .video-section {
        padding: 20px 0;
    }
    
    .video-section::after {
        display: none;
    }
    
    .video-row {
        margin-top: 0;
        padding-top: 20mm;
    }
    
    .text-col {
        margin-top: 0;
    }
    
    .text-col p {
        font-size: 14px;
    }
    
    /* Footer - Mobile */
    .footer {
        padding: 40px 0;
    }
    
    .footer-brand-row {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo-col img {
        height: 180px;
    }
    
    .footer-contact-col {
        text-align: center;
    }
    
    .footer-contact-col .social-links {
        justify-content: center;
        width: 100%;
    }
}

/* Mobile Small (below 480px) */
@media screen and (max-width: 480px) {
    .hero {
        height: 350px;
        min-height: 350px;
    }
    
    .hero-slider,
    .slide {
        height: 350px;
    }
    
    .logo {
        margin-top: -20px;
    }
    
    .logo img {
        height: 207px;
    }
    
    .hero-center {
        margin-top: -20mm;
        padding-top: 0;
    }
    
    .hero-center h1 {
        font-size: 18px;
        margin-top: -10mm;
    }
    
    .contact-info {
        margin-top: 0;
    }
    
    .service-col {
        flex: 0 0 100%;
        height: 180px;
    }
    
    .service-col h3 {
        font-size: 16px;
    }
    
    .footer-logo-col img {
        height: 180px;
    }
}
