/* ===========================
   Global Styles & Reset
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0284c7;
    --secondary-color: #0c4a6e;
    --accent-color: #0369a1;
    --light-blue: #7dd3fc;
    --cyan: #38bdf8;
    --dark-bg: #0c2840;
    --light-bg: #f0f9ff;
    --text-dark: #0c4a6e;
    --text-light: #f0f9ff;
    --gradient-1: linear-gradient(135deg, #0369a1 0%, #0ea5e9 100%);
    --gradient-2: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%);
    --gradient-3: linear-gradient(135deg, #38bdf8 0%, #7dd3fc 100%);
    --gradient-4: linear-gradient(135deg, #7dd3fc 0%, #bae6fd 100%);
    --shadow-sm: 0 2px 10px rgba(2, 132, 199, 0.1);
    --shadow-md: 0 4px 20px rgba(2, 132, 199, 0.15);
    --shadow-lg: 0 10px 40px rgba(2, 132, 199, 0.2);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--accent-color);
    max-width: 600px;
    margin: 0 auto;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-2);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.bg-light {
    background-color: var(--light-bg);
}

.bg-gradient {
    background: linear-gradient(135deg, #0369a1 0%, #0ea5e9 100%);
}

.text-white {
    color: white !important;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: var(--gradient-2);
    border-color: transparent;
    color: white;
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--gradient-2);
    border-color: transparent;
    color: white;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* ===========================
   Header & Navigation
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: white;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

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

.logo-circle {
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.logo-text {
    font-size: 0.9rem;
    font-weight: 900;
    color: white;
    letter-spacing: 1px;
}

.brand-name {
    font-size: 2.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #e63946 0%, #fd3131 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.logo {
    text-decoration: none;
}

.logo-tagline {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(2, 132, 199, 0.1);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #6ec6e9;
    padding-top: 80px;
    overflow: hidden;
}

.hero.small-hero {
    min-height: auto;
    padding: 120px 20px 85px;
}

.hero.small-hero::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border: 2px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 1;
    pointer-events: none;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 3;
    overflow: hidden;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 55px;
}

.hero.small-hero .hero-title {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.hero.small-hero .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.85;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease;
}

.hero-logo {
    margin-top: 60px;
}

.suisen-logo-large {
    width: auto;
    height: 280px;
    margin: 0 auto 15px;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.3));
    animation: pulse 2s infinite;
    display: block;
}

.suisen-logo-large span {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.95;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    font-size: 2rem;
    color: white;
    opacity: 0.7;
}

/* About and home specific sections moved to index.css / about.css */

/* Differentiators Section */
.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.diff-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.diff-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.05) 0%, rgba(56, 189, 248, 0.08) 100%);
}

.diff-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.diff-card h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.diff-card p {
    font-size: 0.95rem;
    color: var(--accent-color);
    line-height: 1.7;
}


@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* About page "offers" section styles live in about.css */
/* ===========================
   Footer
   =========================== */
footer {
    background: var(--dark-bg);
    color: var(--light-bg);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    column-gap: 24px;
    row-gap: 30px;
    margin-bottom: 40px;
    align-items: start;
    justify-items: start;
}

/* Even footer columns */
@media (min-width: 993px) {
    .footer-content {
        grid-template-columns: 90px minmax(230px, 1.1fr) repeat(3, minmax(0, 1fr));
        column-gap: 64px;
    }

    /* Reduce gap between logo and brand text columns */
    .footer-content > .footer-section:nth-child(2) {
        margin-left: -18px;
    }

    /* Reduce gap between Quick Links and Contact Info */
    .footer-content > .footer-section:nth-child(4) {
        margin-left: -20px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    color: var(--light-blue);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--light-blue);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-blue);
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
}

/* Footer brand split into 2 columns: logo + text */
.footer-logo-col {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 2px;
}

.footer-logo-img {
    height: 65px;
    width: auto;
    flex-shrink: 0;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-logo-title {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: white;
    margin-bottom: 6px;
}

.footer-desc,
.footer-motto {
    color: var(--light-blue);
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-motto {
    margin-bottom: 0;
}

.footer-links,
.footer-contact,
.footer-certifications {
    list-style: none;
}

.footer-links li,
.footer-contact li,
.footer-certifications li {
    padding: 8px 0;
}

.footer-links a {
    color: var(--light-blue);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-certifications li {
    color: var(--light-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-certifications i {
    color: #22c55e !important;
}

.footer-contact li {
    color: var(--light-blue);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact li i {
    margin-top: 3px;
    width: 18px;
    flex-shrink: 0;
    display: inline-flex;
    justify-content: center;
    color: #67e8f9;
}

.footer-contact a {
    color: var(--light-blue);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: white;
    text-decoration: underline;
}

.info-details .highlight a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.info-details .highlight a:hover {
    opacity: 0.85;
}

.footer-contact i,
.footer-certifications i {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-blue);
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-bottom i {
    color: var(--primary-color);
}

.address{
    display:flex;
    gap:10px;
    align-items:flex-start;
}

.address i {
    margin-top: 3px;
}

.address div {
    line-height: 1.7;
}

/* ===========================
   Scroll to Top Button
   =========================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        filter: drop-shadow(0 10px 40px rgba(2, 132, 199, 0.2));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 10px 60px rgba(2, 132, 199, 0.5));
        transform: scale(1.02);
    }
    100% {
        filter: drop-shadow(0 10px 40px rgba(2, 132, 199, 0.2));
        transform: scale(1);
    }
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .directors-grid {
        grid-template-columns: 1fr;
    }

    .strategy-section {
        padding: 30px;
    }

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

    .franchise-models {
        grid-template-columns: 1fr;
    }

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

    .marketing-strategy {
        flex-direction: column;
        gap: 20px;
    }

    .strategy-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 40px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

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

    .hero {
        min-height: 30vh;
        padding: 100px 0 40px;
    }

    .hero.small-hero {
        padding: 95px 20px 35px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: row;
        display: flex;
        gap: 10px;
        
    }

    .hero-buttons a{
        flex: 1;
        text-align: center;
        padding: 12px 10px;
        font-size: 14px;
        white-space: nowrap;
    }

    .section-padding {
        padding: 50px 0;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-card {
        padding: 20px 12px;
    }

    .product-card h3 {
        font-size: 0.95rem;
    }

    .sizes-grid {
        grid-template-columns: 1fr;
    }

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

    .franchise-cta {
        padding: 30px;
    }

    /* footer grid handled in dedicated breakpoints below */
}

/* Footer layout for iPad / tablets (portrait) */
@media (min-width: 601px) and (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 24px;
        row-gap: 28px;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .footer-logo-col {
        padding-top: 0;
    }

    .suisen-logo-large {
        height: 180px;
    }

    .logo-img {
        height: 50px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: 16px;
        row-gap: 8px;
    }

    .footer-links li {
        padding: 4px 0;
    }

    .footer-certifications {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 16px;
        row-gap: 8px;
    }

    .footer-certifications li {
        padding: 4px 0;
    }
}

/* ===========================
   Social Media
   =========================== */
.social-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 700px;
    margin: 0 auto;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 35px 20px;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    gap: 15px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.social-card i {
    font-size: 2.5rem;
}

.social-card span {
    font-size: 1rem;
    font-weight: 600;
}

.social-card.social-fb { background: #1877f2; }
.social-card.social-ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-card.social-tw { background: #1da1f2; }
.social-card.social-yt { background: #ff0000; }

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* Social inline (contact page) styles live in contact.css */

/* Footer Social */
.footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social.footer-social-column {
    justify-content: flex-start;
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
    flex-wrap: wrap;
}

.footer-social span {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 4px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-social a.social-fb { background: #1877f2; }
.footer-social a.social-ig { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.footer-social a.social-tw { background: #000; }
.footer-social a.social-yt { background: #ff0000; }

.footer-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .social-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .footer-social {
        justify-content: center;
    }
}


@media(max-width:992px){

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

}

@media(max-width:600px){

.stores-grid{
grid-template-columns:1fr;
}

}